summaryrefslogtreecommitdiff
path: root/cli_ure/source/uno_bridge/cli_uno.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cli_ure/source/uno_bridge/cli_uno.cxx')
-rw-r--r--cli_ure/source/uno_bridge/cli_uno.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/cli_ure/source/uno_bridge/cli_uno.cxx b/cli_ure/source/uno_bridge/cli_uno.cxx
index c1598d98f376..e705de141d8d 100644
--- a/cli_ure/source/uno_bridge/cli_uno.cxx
+++ b/cli_ure/source/uno_bridge/cli_uno.cxx
@@ -230,9 +230,8 @@ void Bridge::call_cli(
catch (System::Exception^ e)
{
OUStringBuffer buf( 128 );
- buf.appendAscii( RTL_CONSTASCII_STRINGPARAM(
- "Unexspected exception during invocation of cli object. "
- "Original message is: \n") );
+ buf.append( "Unexpected exception during invocation of cli object. "
+ "Original message is: \n" );
buf.append(mapCliString(e->Message));
throw BridgeRuntimeError( buf.makeStringAndClear() );
}