From 7e16966d517f1c25e673ddbb88e72cf418f5aeaa Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Fri, 12 Jan 2018 13:34:26 +0200 Subject: Add a separator between two words in an exception message Change-Id: I5c2e01249058e03edfcf036036f9595b87f0a070 Reviewed-on: https://gerrit.libreoffice.org/51963 Tested-by: Jenkins Reviewed-by: Tor Lillqvist --- scripting/source/protocolhandler/scripthandler.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripting') diff --git a/scripting/source/protocolhandler/scripthandler.cxx b/scripting/source/protocolhandler/scripthandler.cxx index b4313df5b8fb..b132c43684c2 100644 --- a/scripting/source/protocolhandler/scripthandler.cxx +++ b/scripting/source/protocolhandler/scripthandler.cxx @@ -240,7 +240,7 @@ void SAL_CALL ScriptProtocolHandler::dispatchWithNotification( OUString reason = "ScriptProtocolHandler::dispatch: caught "; - invokeResult <<= reason.concat( aException.getValueTypeName() ).concat( e.Message ); + invokeResult <<= reason.concat( aException.getValueTypeName() ).concat( ": " ).concat( e.Message ); bCaughtException = true; } -- cgit