summaryrefslogtreecommitdiff
path: root/framework/source/recording
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-09-09 00:58:15 +0300
committerTor Lillqvist <tml@collabora.com>2013-09-09 00:58:15 +0300
commit2b3e2258530b8214229f2c6a8dab385b508eb9bf (patch)
treeac9eeed88f75bca64737b8abced45c983a3f9d14 /framework/source/recording
parent84e981865871ea75d8a2493a8be349b3b93d2e7a (diff)
Bin some uses of the stupid DECLARE_ASCII macro
Change-Id: I076eef8069e848ec3cf9c69f1b489ad44586324e
Diffstat (limited to 'framework/source/recording')
-rw-r--r--framework/source/recording/dispatchrecordersupplier.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/source/recording/dispatchrecordersupplier.cxx b/framework/source/recording/dispatchrecordersupplier.cxx
index fc2990983cca..2f6e65d4c920 100644
--- a/framework/source/recording/dispatchrecordersupplier.cxx
+++ b/framework/source/recording/dispatchrecordersupplier.cxx
@@ -150,10 +150,10 @@ void SAL_CALL DispatchRecorderSupplier::dispatchAndRecord( const css::util::URL&
// clear unspecific situations
if (!xDispatcher.is())
- throw css::uno::RuntimeException(DECLARE_ASCII("specification violation: dispatcher is NULL"), static_cast< ::cppu::OWeakObject* >(this));
+ throw css::uno::RuntimeException("specification violation: dispatcher is NULL", static_cast< ::cppu::OWeakObject* >(this));
if (!xRecorder.is())
- throw css::uno::RuntimeException(DECLARE_ASCII("specification violation: no valid dispatch recorder available"), static_cast< ::cppu::OWeakObject* >(this));
+ throw css::uno::RuntimeException("specification violation: no valid dispatch recorder available", static_cast< ::cppu::OWeakObject* >(this));
// check, if given dispatch supports record functionality by itself ...
// or must be wrapped.