summaryrefslogtreecommitdiff
path: root/unodevtools/source/skeletonmaker/skeletonmaker.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unodevtools/source/skeletonmaker/skeletonmaker.cxx')
-rw-r--r--unodevtools/source/skeletonmaker/skeletonmaker.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/unodevtools/source/skeletonmaker/skeletonmaker.cxx b/unodevtools/source/skeletonmaker/skeletonmaker.cxx
index 456f7b2408a9..3609798cb543 100644
--- a/unodevtools/source/skeletonmaker/skeletonmaker.cxx
+++ b/unodevtools/source/skeletonmaker/skeletonmaker.cxx
@@ -165,16 +165,16 @@ SAL_IMPLEMENT_MAIN()
// check command
rtl_getAppCommandArg(nPos++, &arg.pData);
- if ( arg.equals(OUString(RTL_CONSTASCII_USTRINGPARAM("dump"))) ) {
+ if ( arg == "dump" ) {
options.dump = true;
- } else if ( arg.equals(OUString(RTL_CONSTASCII_USTRINGPARAM("component"))) ) {
+ } else if ( arg == "component" ) {
options.dump = false;
options.shortnames = true;
- } else if ( arg.equals(OUString(RTL_CONSTASCII_USTRINGPARAM("calc-add-in"))) ) {
+ } else if ( arg == "calc-add-in" ) {
options.dump = false;
options.shortnames = true;
options.componenttype = 2;
- } else if ( arg.equals(OUString(RTL_CONSTASCII_USTRINGPARAM("add-on"))) ) {
+ } else if ( arg == "add-on" ) {
options.dump = false;
options.shortnames = true;
options.componenttype = 3;