diff options
author | Tor Lillqvist <tml@collabora.com> | 2018-01-12 13:34:26 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2018-03-27 19:43:24 +0200 |
commit | 7e16966d517f1c25e673ddbb88e72cf418f5aeaa (patch) | |
tree | 87bdabfaa5e8aa68553df5530b01b53591e2694c /scripting | |
parent | af69f27e812a0e86d256e36154ecef9aaf43a32a (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>
Diffstat (limited to 'scripting')
-rw-r--r-- | scripting/source/protocolhandler/scripthandler.cxx | 2 |
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; } |