summaryrefslogtreecommitdiff
path: root/scripting
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2018-01-12 13:34:26 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2018-04-03 16:36:02 +0200
commit60dbde6a1d93fdf450fe61fb67e382531128aa1d (patch)
tree1c62868e47e55f2c2fbf7a06699e55cd2070b2f2 /scripting
parent4f8e8967a6f2355c906b4fdc53f65a6ea2b10832 (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> (cherry picked from commit 7e16966d517f1c25e673ddbb88e72cf418f5aeaa) Reviewed-on: https://gerrit.libreoffice.org/52087 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Miklos Vajna <vmiklos@collabora.co.uk> Reviewed-on: https://gerrit.libreoffice.org/52310
Diffstat (limited to 'scripting')
-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 150ffa052509..cf125b3ac84d 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;
}