diff options
author | Wastack <btomi96@gmail.com> | 2016-03-11 01:07:08 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-11 08:59:30 +0000 |
commit | ce549d2a09ad9884a7e598162cf0ca6b6bc3150c (patch) | |
tree | 6f6033b12e959862c0a4bdb75e1505b6e4d449b5 /l10ntools/source/propmerge.cxx | |
parent | 9a13cff64783a7de3dce7d484c150605bd42a4d6 (diff) |
tdf#97966: Remove 'static' keywords
Change-Id: Iced527f48afa828cc9acf5b6461674a2706cbcd7
Reviewed-on: https://gerrit.libreoffice.org/23135
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'l10ntools/source/propmerge.cxx')
-rw-r--r-- | l10ntools/source/propmerge.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/l10ntools/source/propmerge.cxx b/l10ntools/source/propmerge.cxx index 44e879263204..78680e844165 100644 --- a/l10ntools/source/propmerge.cxx +++ b/l10ntools/source/propmerge.cxx @@ -20,7 +20,7 @@ namespace { //Find ascii escaped unicode - static sal_Int32 lcl_IndexOfUnicode( + sal_Int32 lcl_IndexOfUnicode( const OString& rSource, const sal_Int32 nFrom = 0 ) { const OString sHexDigits = "0123456789abcdefABCDEF"; @@ -41,7 +41,7 @@ namespace } //Convert ascii escaped unicode to utf-8 - static OString lcl_ConvertToUTF8( const OString& rText ) + OString lcl_ConvertToUTF8( const OString& rText ) { OString sResult = rText; sal_Int32 nIndex = lcl_IndexOfUnicode( sResult ); @@ -59,7 +59,7 @@ namespace } //Escape unicode characters - static void lcl_PrintJavaStyle( const OString& rText, std::ofstream &rOfstream ) + void lcl_PrintJavaStyle( const OString& rText, std::ofstream &rOfstream ) { const OUString sTemp = OStringToOUString( rText, RTL_TEXTENCODING_UTF8 ); |