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 /basctl | |
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 'basctl')
-rw-r--r-- | basctl/source/basicide/scriptdocument.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/basicide/scriptdocument.cxx b/basctl/source/basicide/scriptdocument.cxx index 6d3a328100b0..3581c1b92e1a 100644 --- a/basctl/source/basicide/scriptdocument.cxx +++ b/basctl/source/basicide/scriptdocument.cxx @@ -115,7 +115,7 @@ namespace basctl namespace { - static bool StringCompareLessThan( const OUString& lhs, const OUString& rhs ) + bool StringCompareLessThan( const OUString& lhs, const OUString& rhs ) { return lhs.compareToIgnoreAsciiCase( rhs ) < 0; } |