diff options
author | Wastack <btomi96@gmail.com> | 2016-03-29 23:49:41 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2016-03-30 14:25:11 +0000 |
commit | 14060e76e33cfb305c1469fecf7db688bf8a8858 (patch) | |
tree | 01cf5e0226a37e707760d502ff6b3793954c5a5a /l10ntools/source/po.cxx | |
parent | ba0a866b83f016fd460320e7d057dd107e019f19 (diff) |
tdf#97966 Drop 'static' keywords
Change-Id: I2e495243b75fc239dafbf63c7644115f0a923f4a
Reviewed-on: https://gerrit.libreoffice.org/23607
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'l10ntools/source/po.cxx')
-rw-r--r-- | l10ntools/source/po.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx index 6aa7c1d6f48c..1d8223e869f7 100644 --- a/l10ntools/source/po.cxx +++ b/l10ntools/source/po.cxx @@ -87,7 +87,7 @@ public: namespace { // Convert a normal string to msg/po output string - static OString lcl_GenMsgString(const OString& rString) + OString lcl_GenMsgString(const OString& rString) { if ( rString.isEmpty() ) return "\"\""; @@ -114,7 +114,7 @@ namespace } // Convert msg string to normal form - static OString lcl_GenNormString(const OString& rString) + OString lcl_GenNormString(const OString& rString) { return helper::unEscapeAll( @@ -406,7 +406,7 @@ OString PoEntry::genKeyId(const OString& rGenerator) namespace { // Get actual time in "YEAR-MO-DA HO:MI+ZONE" form - static OString lcl_GetTime() + OString lcl_GetTime() { time_t aNow = time(nullptr); struct tm* pNow = localtime(&aNow); @@ -511,7 +511,7 @@ namespace { // Check the validity of read entry -static bool lcl_CheckInputEntry(const GenPoEntry& rEntry) +bool lcl_CheckInputEntry(const GenPoEntry& rEntry) { const OString sMsgCtxt = rEntry.getMsgCtxt(); const sal_Int32 nFirstEndLine = sMsgCtxt.indexOf('\n'); |