summaryrefslogtreecommitdiff
path: root/l10ntools
diff options
context:
space:
mode:
authorJosh Heidenreich <josh.sickmate@gmail.com>2012-02-06 13:01:02 +1030
committerStephan Bergmann <sbergman@redhat.com>2012-02-06 09:53:52 +0100
commitc1a3961b4582e47ebcee84b3acc2a808651bcd07 (patch)
treef347e71c53adaf2fd88b3dcf05cf1f713b8b83c4 /l10ntools
parentfcc56e8a894dfeb8885f663f33f364becec5d176 (diff)
Single-line bugfix in l10n tools to fix compile on GCC 4.4.3 (Ubuntu)
Diffstat (limited to 'l10ntools')
-rw-r--r--l10ntools/source/lngex.cxx2
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")))