summaryrefslogtreecommitdiff
path: root/rsc
diff options
context:
space:
mode:
authore12346 <e12346@ce.pdn.ac.lk>2016-10-02 09:54:34 +0530
committerJulien Nabet <serval2412@yahoo.fr>2016-10-02 09:11:46 +0000
commit793dae3e90692467c0f111cf5b127209f7f522fa (patch)
tree32d4660ac3d84ab0e5f6f67ec980c1db2a14cd3c /rsc
parentd866c3af42bb32a328ce2fd7e460744e28efd08d (diff)
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@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'rsc')
-rw-r--r--rsc/source/rsc/rsc.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsc/source/rsc/rsc.cxx b/rsc/source/rsc/rsc.cxx
index 23e7debaf24e..2fedf1a6198c 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());