rsc/source/rsc/rsc.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 793dae3e90692467c0f111cf5b127209f7f522fa
Author: e12346 <e12...@ce.pdn.ac.lk>
Date:   Sun Oct 2 09:54:34 2016 +0530

    tdf#100726 Improve readability of OUString concatination
    
    fixed the bug on rsc/source/rsc/rsc.cxx
    
    Change-Id: I0c1c92f63b8c18d3acbdcf74e7284a2dae19da44
    Reviewed-on: https://gerrit.libreoffice.org/29451
    Tested-by: Jenkins <c...@libreoffice.org>
    Reviewed-by: Julien Nabet <serval2...@yahoo.fr>

diff --git a/rsc/source/rsc/rsc.cxx b/rsc/source/rsc/rsc.cxx
index 23e7deb..2fedf1a 100644
--- a/rsc/source/rsc/rsc.cxx
+++ b/rsc/source/rsc/rsc.cxx
@@ -617,8 +617,8 @@ ERRTYPE RscCompiler::Link()
             }
             catch (RscIoError&)
             {
-                OString sMsg("Error with paths:\n");
-                sMsg += "temporary rc file: " + aRcTmp + "\n"
+                OString sMsg = "Error with paths:\n"
+                        "temporary rc file: " + aRcTmp + "\n"
                         "temporary ilst file: " + aSysListTmp + "\n"
                         "ilst file: " + aSysList + "\n";
                 pTC->pEH->FatalError(ERR_OPENFILE, RscId(), sMsg.getStr());
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to