diff options
author | Ricardo Montania <ricardo@linuxafundo.com.br> | 2012-09-05 00:15:25 -0300 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-09-05 09:26:10 +0200 |
commit | a60f9112146b23566a6a0ff3a5109889f4b7c0b1 (patch) | |
tree | 174f64efee745533f2ffa8f6c9b56cbb823462c3 /binaryurp/source/incomingrequest.cxx | |
parent | a82e532ce006c54b2740de74d1da5d11307da7c1 (diff) |
OUString and RTL_CONSTASCII cleanup
Change-Id: Ic56451b2c13d8561bb6e6ee92bf9147b35640a5c
Diffstat (limited to 'binaryurp/source/incomingrequest.cxx')
-rw-r--r-- | binaryurp/source/incomingrequest.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/binaryurp/source/incomingrequest.cxx b/binaryurp/source/incomingrequest.cxx index 391b0e4ad69b..ffe33e2da655 100644 --- a/binaryurp/source/incomingrequest.cxx +++ b/binaryurp/source/incomingrequest.cxx @@ -80,8 +80,7 @@ void IncomingRequest::execute() const { isExc = !execute_throw(&ret, &outArgs); } catch (const std::exception & e) { throw css::uno::RuntimeException( - (OUString( - RTL_CONSTASCII_USTRINGPARAM("caught C++ exception: ")) + + ("caught C++ exception: " + rtl::OStringToOUString( rtl::OString(e.what()), RTL_TEXTENCODING_ASCII_US)), css::uno::Reference< css::uno::XInterface >()); |