diff options
author | Wastack <btomi96@gmail.com> | 2016-03-31 08:42:46 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-01 06:45:36 +0000 |
commit | 20ba5d464a9fba3090af6a644a331ee237356fea (patch) | |
tree | 05f252c112fd423addd852cee1713060ea89abca /extensions | |
parent | 9e596250a6e968c5d1e2fb0de582ae242e02acf9 (diff) |
tdf#97966 Drop 'static' keywords
Including no keywords from extern "C" blocks
Change-Id: I8bcd7e8a492ee4dbfa5141416c7c038a1391cf20
Reviewed-on: https://gerrit.libreoffice.org/23673
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/propctrlr/eventhandler.cxx | 2 | ||||
-rw-r--r-- | extensions/source/propctrlr/formgeometryhandler.cxx | 2 | ||||
-rw-r--r-- | extensions/source/propctrlr/pushbuttonnavigation.cxx | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/extensions/source/propctrlr/eventhandler.cxx b/extensions/source/propctrlr/eventhandler.cxx index 496ccd0ed6e6..396239d3ca6b 100644 --- a/extensions/source/propctrlr/eventhandler.cxx +++ b/extensions/source/propctrlr/eventhandler.cxx @@ -1046,7 +1046,7 @@ namespace pcr namespace { - static bool lcl_endsWith( const OUString& _rText, const OUString& _rCheck ) + bool lcl_endsWith( const OUString& _rText, const OUString& _rCheck ) { sal_Int32 nTextLen = _rText.getLength(); sal_Int32 nCheckLen = _rCheck.getLength(); diff --git a/extensions/source/propctrlr/formgeometryhandler.cxx b/extensions/source/propctrlr/formgeometryhandler.cxx index 99f1e13c06f8..1664f8c24a13 100644 --- a/extensions/source/propctrlr/formgeometryhandler.cxx +++ b/extensions/source/propctrlr/formgeometryhandler.cxx @@ -611,7 +611,7 @@ namespace pcr namespace { - static sal_Int32 lcl_getLowerBoundRowOrColumn( const Reference< XIndexAccess >& _rxRowsOrColumns, const bool _bRows, + sal_Int32 lcl_getLowerBoundRowOrColumn( const Reference< XIndexAccess >& _rxRowsOrColumns, const bool _bRows, const css::awt::Point& _rRelativePosition ) { sal_Int32 nAccumulated = 0; diff --git a/extensions/source/propctrlr/pushbuttonnavigation.cxx b/extensions/source/propctrlr/pushbuttonnavigation.cxx index 095d142c15a0..e4c75605fdfb 100644 --- a/extensions/source/propctrlr/pushbuttonnavigation.cxx +++ b/extensions/source/propctrlr/pushbuttonnavigation.cxx @@ -54,7 +54,7 @@ namespace pcr nullptr }; - static sal_Int32 lcl_getNavigationURLIndex( const OUString& _rNavURL ) + sal_Int32 lcl_getNavigationURLIndex( const OUString& _rNavURL ) { const sal_Char** pLookup = pNavigationURLs; while ( *pLookup ) @@ -66,7 +66,7 @@ namespace pcr return -1; } - static const sal_Char* lcl_getNavigationURL( sal_Int32 _nButtonTypeIndex ) + const sal_Char* lcl_getNavigationURL( sal_Int32 _nButtonTypeIndex ) { const sal_Char** pLookup = pNavigationURLs; while ( _nButtonTypeIndex-- && *pLookup++ ) |