Kaydet (Commit) c1a3961b authored tarafından Josh Heidenreich's avatar Josh Heidenreich Kaydeden (comit) Stephan Bergmann

Single-line bugfix in l10n tools to fix compile on GCC 4.4.3 (Ubuntu)

üst fcc56e8a
...@@ -74,7 +74,7 @@ sal_Bool ParseCommandLine( int argc, char* argv[]) ...@@ -74,7 +74,7 @@ sal_Bool ParseCommandLine( int argc, char* argv[])
// parse command line // parse command line
for( int i = 1; i < argc; i++ ) { 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"))) if (sSwitch.equalsL(RTL_CONSTASCII_STRINGPARAM("-I")))
nState = STATE_INPUT; // next tokens specifies source files nState = STATE_INPUT; // next tokens specifies source files
else if (sSwitch.equalsL(RTL_CONSTASCII_STRINGPARAM("-O"))) else if (sSwitch.equalsL(RTL_CONSTASCII_STRINGPARAM("-O")))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment