From 2b3e2258530b8214229f2c6a8dab385b508eb9bf Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Mon, 9 Sep 2013 00:58:15 +0300 Subject: Bin some uses of the stupid DECLARE_ASCII macro Change-Id: I076eef8069e848ec3cf9c69f1b489ad44586324e --- framework/source/recording/dispatchrecordersupplier.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'framework/source/recording') 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. -- cgit