[Libreoffice-commits] core.git: scripting/source

Tor Lillqvist tml at collabora.com
Tue Mar 27 17:43:47 UTC 2018


 scripting/source/protocolhandler/scripthandler.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7e16966d517f1c25e673ddbb88e72cf418f5aeaa
Author: Tor Lillqvist <tml at collabora.com>
Date:   Fri Jan 12 13:34:26 2018 +0200

    Add a separator between two words in an exception message
    
    Change-Id: I5c2e01249058e03edfcf036036f9595b87f0a070
    Reviewed-on: https://gerrit.libreoffice.org/51963
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Tor Lillqvist <tml at collabora.com>

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;
         }


More information about the Libreoffice-commits mailing list