diff options
Diffstat (limited to 'chart2/source/inc')
-rw-r--r-- | chart2/source/inc/InternalDataProvider.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/chart2/source/inc/InternalDataProvider.hxx b/chart2/source/inc/InternalDataProvider.hxx index 901c792d5d74..526ca2d04fd5 100644 --- a/chart2/source/inc/InternalDataProvider.hxx +++ b/chart2/source/inc/InternalDataProvider.hxx @@ -217,27 +217,27 @@ public: throw (::com::sun::star::uno::RuntimeException, ::com::sun::star::uno::Exception, std::exception) SAL_OVERRIDE; private: - void lcl_addDataSequenceToMap( + void addDataSequenceToMap( const OUString & rRangeRepresentation, const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSequence > & xSequence ); ::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSequence > - lcl_createDataSequenceAndAddToMap( const OUString & rRangeRepresentation, + createDataSequenceAndAddToMap( const OUString & rRangeRepresentation, const OUString & rRole ); ::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSequence > - lcl_createDataSequenceAndAddToMap( const OUString & rRangeRepresentation ); + createDataSequenceAndAddToMap( const OUString & rRangeRepresentation ); - void lcl_deleteMapReferences( const OUString & rRangeRepresentation ); + void deleteMapReferences( const OUString & rRangeRepresentation ); - void lcl_adaptMapReferences( + void adaptMapReferences( const OUString & rOldRangeRepresentation, const OUString & rNewRangeRepresentation ); - void lcl_increaseMapReferences( sal_Int32 nBegin, sal_Int32 nEnd ); - void lcl_decreaseMapReferences( sal_Int32 nBegin, sal_Int32 nEnd ); + void increaseMapReferences( sal_Int32 nBegin, sal_Int32 nEnd ); + void decreaseMapReferences( sal_Int32 nBegin, sal_Int32 nEnd ); typedef ::std::multimap< OUString, ::com::sun::star::uno::WeakReference< ::com::sun::star::chart2::data::XDataSequence > > |