[Libreoffice-commits] core.git: rsc/source
e12346
e12346 at ce.pdn.ac.lk
Sun Oct 2 09:15:46 UTC 2016
rsc/source/rsc/rsc.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 793dae3e90692467c0f111cf5b127209f7f522fa
Author: e12346 <e12346 at 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 <ci at libreoffice.org>
Reviewed-by: Julien Nabet <serval2412 at 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());
More information about the Libreoffice-commits
mailing list