summaryrefslogtreecommitdiffstats
path: root/basctl
diff options
context:
space:
mode:
authorWastack <btomi96@gmail.com>2016-03-31 08:34:53 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-01 06:44:05 +0000
commit0b8e5ca5a25dfe9f20b098fdbd94f7e9f223f5c7 (patch)
tree3dbf334a665fbc6311b92555e5636e822af962ea /basctl
parentloplugin:staticanonymous (diff)
downloadcore-0b8e5ca5a25dfe9f20b098fdbd94f7e9f223f5c7.tar.gz
core-0b8e5ca5a25dfe9f20b098fdbd94f7e9f223f5c7.zip
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.cxx2
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;
}