diff options
author | Gökhan Gurbetoğlu <gokhan.gurbetoglu@pardus.org.tr> | 2016-08-24 14:43:05 +0300 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-08-26 07:15:34 +0000 |
commit | 674e0f0b43392a7e7fa515dad8427ccc901f7a01 (patch) | |
tree | bc2544d497b2dca7b2f5f8f1fbc704ed5f098b61 /rsc | |
parent | ea9a90d83d92076d41abfd31a1fd3a5d84b6ba92 (diff) |
tdf#100726 - Improve readability of OUString concatanations
Change-Id: I3099818283a9801976288d0efa67a8711106f376
Reviewed-on: https://gerrit.libreoffice.org/28360
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'rsc')
-rw-r--r-- | rsc/source/rsc/rsc.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rsc/source/rsc/rsc.cxx b/rsc/source/rsc/rsc.cxx index 962616780452..a26084b16e3a 100644 --- a/rsc/source/rsc/rsc.cxx +++ b/rsc/source/rsc/rsc.cxx @@ -622,9 +622,9 @@ ERRTYPE RscCompiler::Link() catch (RscIoError&) { OString sMsg("Error with paths:\n"); - sMsg += "temporary rc file: " + aRcTmp + "\n"; - sMsg += "temporary ilst file: " + aSysListTmp + "\n"; - sMsg += "ilst file: " + aSysList + "\n"; + sMsg += "temporary rc file: " + aRcTmp + "\n" + "temporary ilst file: " + aSysListTmp + "\n" + "ilst file: " + aSysList + "\n"; pTC->pEH->FatalError(ERR_OPENFILE, RscId(), sMsg.getStr()); } if ( nullptr == (fExitFile = foutput = fopen( aRcTmp.getStr(), "wb" )) ) |