diff options
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/source/lngex.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/lngex.cxx b/l10ntools/source/lngex.cxx index e921a74cb56e..73d72215fca7 100644 --- a/l10ntools/source/lngex.cxx +++ b/l10ntools/source/lngex.cxx @@ -74,7 +74,7 @@ sal_Bool ParseCommandLine( int argc, char* argv[]) // parse command line for( int i = 1; i < argc; i++ ) { - rtl::OString sSwitch(rtl::OString(argv[i]).toAsciiUpperCase()); + rtl::OString sSwitch = rtl::OString(argv[i]).toAsciiUpperCase(); if (sSwitch.equalsL(RTL_CONSTASCII_STRINGPARAM("-I"))) nState = STATE_INPUT; // next tokens specifies source files else if (sSwitch.equalsL(RTL_CONSTASCII_STRINGPARAM("-O"))) |