summaryrefslogtreecommitdiffstats
path: root/comphelper/source/misc/synchronousdispatch.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/source/misc/synchronousdispatch.cxx')
-rw-r--r--comphelper/source/misc/synchronousdispatch.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/comphelper/source/misc/synchronousdispatch.cxx b/comphelper/source/misc/synchronousdispatch.cxx
index 598ca7b6b8f9..bb0d28aa80a5 100644
--- a/comphelper/source/misc/synchronousdispatch.cxx
+++ b/comphelper/source/misc/synchronousdispatch.cxx
@@ -27,7 +27,6 @@
#include "comphelper/synchronousdispatch.hxx"
#include "comphelper/processfactory.hxx"
-#define UNISTRING(s) rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(s))
//.........................................................................
namespace comphelper
@@ -50,7 +49,7 @@ uno::Reference< lang::XComponent > SynchronousDispatch::dispatch(
util::URL aURL;
aURL.Complete = sURL;
uno::Reference < util::XURLTransformer > xTrans( ::comphelper::getProcessServiceFactory()->createInstance(
- UNISTRING("com.sun.star.util.URLTransformer" )),
+ "com.sun.star.util.URLTransformer"),
uno::UNO_QUERY );
if ( xTrans.is() )
xTrans->parseStrict( aURL );
@@ -76,7 +75,7 @@ uno::Reference< lang::XComponent > SynchronousDispatch::dispatch(
}
catch ( uno::Exception& )
{
- rtl::OUString aMsg = UNISTRING( "SynchronousDispatch::dispatch() Error while dispatching! ");
+ OUString aMsg = "SynchronousDispatch::dispatch() Error while dispatching! ";
OSL_FAIL( OUStringToOString(aMsg, RTL_TEXTENCODING_ASCII_US).getStr());
}
}