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.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/unodevtools/source/skeletonmaker/skeletonmaker.cxx b/unodevtools/source/skeletonmaker/skeletonmaker.cxx
index 1b20636ed0ed..4884bd4f69ad 100644
--- a/unodevtools/source/skeletonmaker/skeletonmaker.cxx
+++ b/unodevtools/source/skeletonmaker/skeletonmaker.cxx
@@ -270,9 +270,9 @@ SAL_IMPLEMENT_MAIN()
// else illegal argument
OUStringBuffer buf( 64 );
- buf.appendAscii(RTL_CONSTASCII_STRINGPARAM("unexpected parameter \""));
+ buf.append("unexpected parameter \"");
buf.append(arg);
- buf.appendAscii(RTL_CONSTASCII_STRINGPARAM("\"!"));
+ buf.append("\"!");
throw RuntimeException(buf.makeStringAndClear(),
Reference< XInterface >());
}