diff options
Diffstat (limited to 'chart2/source/inc/InternalData.hxx')
-rw-r--r-- | chart2/source/inc/InternalData.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/inc/InternalData.hxx b/chart2/source/inc/InternalData.hxx index 77ed6cabd501..082f6ee3b6b6 100644 --- a/chart2/source/inc/InternalData.hxx +++ b/chart2/source/inc/InternalData.hxx @@ -72,9 +72,9 @@ public: typedef ::std::vector< ::std::vector< ::com::sun::star::uno::Any > > tVecVecAny; //inner index is hierarchical level void setComplexRowLabels( const tVecVecAny& rNewRowLabels ); - tVecVecAny getComplexRowLabels() const; + tVecVecAny getComplexRowLabels() const { return m_aRowLabels;} void setComplexColumnLabels( const tVecVecAny& rNewColumnLabels ); - tVecVecAny getComplexColumnLabels() const; + tVecVecAny getComplexColumnLabels() const { return m_aColumnLabels;} #if OSL_DEBUG_LEVEL > 1 void traceData() const; |