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 12:32:11 +0200
commit6fe5ad95afba252561fb5960627ac7eb19270d37 (patch)
treee4363303124c108986e3211ba44319774842b3ed /scripting
parentccef956c4f11ac6c0612a0d22845d02743c91039 (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>
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 cd82b1931f5f..2315fc1963fa 100644
--- a/scripting/source/protocolhandler/scripthandler.cxx
+++ b/scripting/source/protocolhandler/scripthandler.cxx
@@ -254,7 +254,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;
}