summaryrefslogtreecommitdiff
path: root/vcl/qa/cppunit/BitmapTest.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/qa/cppunit/BitmapTest.cxx')
-rw-r--r--vcl/qa/cppunit/BitmapTest.cxx10
1 files changed, 3 insertions, 7 deletions
diff --git a/vcl/qa/cppunit/BitmapTest.cxx b/vcl/qa/cppunit/BitmapTest.cxx
index 98fabd569f24..dfcf44a8f6a7 100644
--- a/vcl/qa/cppunit/BitmapTest.cxx
+++ b/vcl/qa/cppunit/BitmapTest.cxx
@@ -330,13 +330,9 @@ void checkAndInsert(CRCHash& rHash, sal_uInt64 nCRC, const char* pLocation)
auto it = rHash.find(nCRC);
if (it != rHash.end())
{
- OStringBuffer aBuf("CRC collision between ");
- aBuf.append(pLocation);
- aBuf.append(" and ");
- aBuf.append(it->second);
- aBuf.append(" hash is 0x");
- aBuf.append(static_cast<sal_Int64>(nCRC), 16);
- CPPUNIT_FAIL(aBuf.toString().getStr());
+ OString aBuf = OString::Concat("CRC collision between ") + pLocation + " and " + it->second
+ + " hash is 0x" + OString::number(static_cast<sal_Int64>(nCRC), 16);
+ CPPUNIT_FAIL(aBuf.getStr());
}
rHash[nCRC] = pLocation;
}