summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2018-01-12 13:34:26 +0200
committerTor Lillqvist <tml@collabora.com>2018-03-27 19:43:24 +0200
commit7e16966d517f1c25e673ddbb88e72cf418f5aeaa (patch)
tree87bdabfaa5e8aa68553df5530b01b53591e2694c
parentaf69f27e812a0e86d256e36154ecef9aaf43a32a (diff)
Add a separator between two words in an exception message
Change-Id: I5c2e01249058e03edfcf036036f9595b87f0a070 Reviewed-on: https://gerrit.libreoffice.org/51963 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tor Lillqvist <tml@collabora.com>
-rw-r--r--scripting/source/protocolhandler/scripthandler.cxx2
1 files changed, 1 insertions, 1 deletions
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;
}