diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-08-31 19:29:31 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-09-01 12:29:39 +0200 |
commit | ee8f0a10661b747db9a82b9acba4de343a5a51d6 (patch) | |
tree | ce9b6b2cf18caa73b8500245d558ff2ac484074d /vcl/qa | |
parent | 0940229305247b4e64e8c85c9734020c9808a6ec (diff) |
Fix '..'
To complete this:
https://gerrit.libreoffice.org/#/c/78312/
This is a massive replace for
".." instead of "..." between words.
It passed "make check" on Linux.
Change-Id: I144d8061fca9f545c762941551e59dffdd3650e8
Reviewed-on: https://gerrit.libreoffice.org/78357
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Jenkins
Diffstat (limited to 'vcl/qa')
-rw-r--r-- | vcl/qa/cppunit/bitmaprender/BitmapRenderTest.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/qa/cppunit/bitmaprender/BitmapRenderTest.cxx b/vcl/qa/cppunit/bitmaprender/BitmapRenderTest.cxx index 7b0d2d10a1ff..bc8bdc6c06a1 100644 --- a/vcl/qa/cppunit/bitmaprender/BitmapRenderTest.cxx +++ b/vcl/qa/cppunit/bitmaprender/BitmapRenderTest.cxx @@ -189,7 +189,7 @@ void BitmapRenderTest::testAlphaVirtualDevice() aColor = pAlphaVirtualDevice->GetPixel(Point(1, 1)); // Read back the opaque pixel #ifdef MACOSX - // Oh no.. what we input is not the same as what we get out! + // Oh no... what we input is not the same as what we get out! CPPUNIT_ASSERT_EQUAL(Color(0x002Cff44), aColor); #elif defined _WIN32 CPPUNIT_ASSERT_LESS(6, deltaColor(Color(0x0022ff55), aColor)); @@ -204,7 +204,7 @@ void BitmapRenderTest::testAlphaVirtualDevice() aColor = aBitmap.GetPixelColor(1, 1); #ifdef MACOSX - // Oh no.. what we input is not the same as what we get out! + // Oh no... what we input is not the same as what we get out! CPPUNIT_ASSERT_EQUAL(Color(0x002Cff44), aColor); #elif defined _WIN32 CPPUNIT_ASSERT_LESS(6, deltaColor(Color(0x0022ff55), aColor)); @@ -218,7 +218,7 @@ void BitmapRenderTest::testAlphaVirtualDevice() aColor = pAlphaVirtualDevice->GetPixel(Point(0, 0)); // Read back the semi-transparent pixel #ifdef MACOSX - // Oh no.. what we input is not the same as what we get out! + // Oh no... what we input is not the same as what we get out! CPPUNIT_ASSERT_EQUAL(Color(0x342CFF44), aColor); #elif defined _WIN32 CPPUNIT_ASSERT_LESS(6, deltaColor(Color(0x4422FF55), aColor)); @@ -233,7 +233,7 @@ void BitmapRenderTest::testAlphaVirtualDevice() aColor = aBitmap.GetPixelColor(0, 0); #ifdef MACOSX - // Oh no.. what we input is not the same as what we get out! + // Oh no... what we input is not the same as what we get out! CPPUNIT_ASSERT_EQUAL(Color(0x342CFF44), aColor); #elif defined _WIN32 CPPUNIT_ASSERT_LESS(6, deltaColor(Color(0x4422FF55), aColor)); |