diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-06-24 18:40:54 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-06-24 18:46:46 -0400 |
commit | 349132616d3bb724b43ae3fc531098369aa5be00 (patch) | |
tree | 39e2d1371363507debf0511d94f0119b3f75d530 /chart2/source/inc | |
parent | b8d84a3bf59212a9652f76d7852c81191b8c8a3b (diff) |
Let's remove these lcl_ fetish.
These are not even static local functions anyway, which was what
lcl_ prefix was originally used for.
Change-Id: I0e6b6cebbcf7cdfb449cf17320fb362fc73d92a8
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 > > |