diff options
Diffstat (limited to 'svx/source/gengal')
-rw-r--r-- | svx/source/gengal/gengal.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/gengal/gengal.cxx b/svx/source/gengal/gengal.cxx index bad7a7aca44e..0104b70d753d 100644 --- a/svx/source/gengal/gengal.cxx +++ b/svx/source/gengal/gengal.cxx @@ -286,16 +286,16 @@ int GalApp::Main() aParam.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "-h" ) ) ) bHelp = true; - else if ( aParam.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "--name" ) ) ) + else if ( aParam == "--name" ) aName = GetCommandLineParam( ++i ); - else if ( aParam.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "--path" ) ) ) + else if ( aParam == "--path" ) aPath = Smartify( GetCommandLineParam( ++i ) ); - else if ( aParam.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "--destdir" ) ) ) + else if ( aParam == "--destdir" ) aDestDir = GetCommandLineParam( ++i ); - else if ( aParam.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "--number-from" ) ) ) + else if ( aParam == "--number-from" ) nNumFrom = GetCommandLineParam( ++i ).ToInt32(); else |