Kaydet (Commit) 793dae3e authored tarafından e12346's avatar e12346 Kaydeden (comit) Julien Nabet

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/29451Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
üst d866c3af
......@@ -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());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment