diff options
author | Radu Ioan <ioan.radu.g@gmail.com> | 2012-12-10 23:06:10 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-12-11 12:08:38 +0000 |
commit | 3e64874e7cd234ff563ac11450cfb2b6e2db4bf6 (patch) | |
tree | 5fd298e750ac28fabc3a7179d7af492c13113e01 /configmgr/source/broadcaster.cxx | |
parent | 90874ab3c75fd161a672a24538cbce909f284e97 (diff) |
rtl:: prefix removal from configmgr
- removed rtl:: prefix
- removed RTL_CONSTASCII_USTRINGPARAM
- corrected some misspells
Change-Id: I88bb0beec718a7fe38c61220aa61401419f23b42
Reviewed-on: https://gerrit.libreoffice.org/1291
Reviewed-by: Luboš Luňák <l.lunak@suse.cz>
Tested-by: Luboš Luňák <l.lunak@suse.cz>
Diffstat (limited to 'configmgr/source/broadcaster.cxx')
-rw-r--r-- | configmgr/source/broadcaster.cxx | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/configmgr/source/broadcaster.cxx b/configmgr/source/broadcaster.cxx index d7592c683c68..6a6a503b0e0e 100644 --- a/configmgr/source/broadcaster.cxx +++ b/configmgr/source/broadcaster.cxx @@ -45,9 +45,9 @@ namespace configmgr { namespace { void appendMessage( - rtl::OUStringBuffer & buffer, css::uno::Exception const & exception) + OUStringBuffer & buffer, css::uno::Exception const & exception) { - buffer.appendAscii(RTL_CONSTASCII_STRINGPARAM("; ")); + buffer.appendAscii("; "); buffer.append(exception.Message); } @@ -110,7 +110,7 @@ void Broadcaster::addChangesNotification( void Broadcaster::send() { css::uno::Any exception; - rtl::OUStringBuffer messages; + OUStringBuffer messages; for (DisposeNotifications::iterator i(disposeNotifications_.begin()); i != disposeNotifications_.end(); ++i) { try { @@ -193,9 +193,7 @@ void Broadcaster::send() { } if (exception.hasValue()) { throw css::lang::WrappedTargetRuntimeException( - (rtl::OUString( - RTL_CONSTASCII_USTRINGPARAM( - "configmgr exceptions during listener notification")) + + (OUString("configmgr exceptions during listener notification") + messages.makeStringAndClear()), css::uno::Reference< css::uno::XInterface >(), exception); |