diff options
author | Wastack <btomi96@gmail.com> | 2016-03-31 08:34:53 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-01 06:44:05 +0000 |
commit | 0b8e5ca5a25dfe9f20b098fdbd94f7e9f223f5c7 (patch) | |
tree | 3dbf334a665fbc6311b92555e5636e822af962ea /comphelper | |
parent | 0de40868b49b9fc387391e2cbca1c8e910ef3bd3 (diff) |
tdf#97966 Drop 'static' keywords
Including no keywords from extern "C" blocks
Change-Id: Id0304994a692f1004993dda2ffd7fb819ab8e8d0
Reviewed-on: https://gerrit.libreoffice.org/23670
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/misc/accessibleeventnotifier.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/comphelper/source/misc/accessibleeventnotifier.cxx b/comphelper/source/misc/accessibleeventnotifier.cxx index b005d31702d0..a84d0aad0031 100644 --- a/comphelper/source/misc/accessibleeventnotifier.cxx +++ b/comphelper/source/misc/accessibleeventnotifier.cxx @@ -58,7 +58,7 @@ namespace } }; - static void releaseId(AccessibleEventNotifier::TClientId const nId) + void releaseId(AccessibleEventNotifier::TClientId const nId) { IntervalMap & rFreeIntervals(FreeIntervals::get()); IntervalMap::iterator const upper(rFreeIntervals.upper_bound(nId)); @@ -87,7 +87,7 @@ namespace } /// generates a new client id - static AccessibleEventNotifier::TClientId generateId() + AccessibleEventNotifier::TClientId generateId() { IntervalMap & rFreeIntervals(FreeIntervals::get()); assert(!rFreeIntervals.empty()); @@ -124,7 +124,7 @@ namespace <TRUE/> if and only if the client could be found and <arg>rPos</arg> has been filled with its position */ - static bool implLookupClient( + bool implLookupClient( const AccessibleEventNotifier::TClientId nClient, ClientMap::iterator& rPos ) { |