diff options
-rw-r--r-- | l10ntools/source/helpex.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/helpex.cxx b/l10ntools/source/helpex.cxx index 2680c59b63d1..f06f618ecb1a 100644 --- a/l10ntools/source/helpex.cxx +++ b/l10ntools/source/helpex.cxx @@ -79,7 +79,7 @@ sal_Bool ParseCommandLine( int argc, char* argv[]) // parse command line for( int i = 1; i < argc; i++ ) { - rtl::OString aArg(rtl::OString(argv[i]).toAsciiUpperCase()); + rtl::OString aArg = rtl::OString(argv[i]).toAsciiUpperCase(); if (aArg.equalsL(RTL_CONSTASCII_STRINGPARAM("-I"))) nState = STATE_INPUT; // next tokens specifies source files else if (aArg.equalsL(RTL_CONSTASCII_STRINGPARAM("-O"))) |