summaryrefslogtreecommitdiff
path: root/vcl/qa
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/qa')
-rw-r--r--vcl/qa/cppunit/BitmapFilterTest.cxx2
-rw-r--r--vcl/qa/cppunit/BitmapTest.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/vcl/qa/cppunit/BitmapFilterTest.cxx b/vcl/qa/cppunit/BitmapFilterTest.cxx
index e0cf3ef1ca8a..ade5acbc6271 100644
--- a/vcl/qa/cppunit/BitmapFilterTest.cxx
+++ b/vcl/qa/cppunit/BitmapFilterTest.cxx
@@ -109,7 +109,7 @@ void BitmapFilterTest::testBlurCorrectness()
// Check that the bitmap is horizontally and vertically symmetrical
BitmapSymmetryCheck symmetryCheck;
- CPPUNIT_ASSERT(symmetryCheck.check(aBitmap24Bit));
+ CPPUNIT_ASSERT(BitmapSymmetryCheck::check(aBitmap24Bit));
{
Bitmap::ScopedReadAccess aReadAccess(aBitmap24Bit);
diff --git a/vcl/qa/cppunit/BitmapTest.cxx b/vcl/qa/cppunit/BitmapTest.cxx
index b0c234b3bbb8..c20c12b9926b 100644
--- a/vcl/qa/cppunit/BitmapTest.cxx
+++ b/vcl/qa/cppunit/BitmapTest.cxx
@@ -121,7 +121,7 @@ void BitmapTest::testScale()
CPPUNIT_ASSERT_EQUAL(static_cast<long>(10), aBitmap24Bit.GetSizePixel().Height());
// Check symmetry of the bitmap
- CPPUNIT_ASSERT(aBitmapSymmetryCheck.check(aBitmap24Bit));
+ CPPUNIT_ASSERT(BitmapSymmetryCheck::check(aBitmap24Bit));
if (bExportBitmap)
{
@@ -137,7 +137,7 @@ void BitmapTest::testScale()
// After scaling the bitmap should still be symmetrical. This check guarantees that
// scaling doesn't misalign the bitmap.
- CPPUNIT_ASSERT(aBitmapSymmetryCheck.check(aBitmap24Bit));
+ CPPUNIT_ASSERT(BitmapSymmetryCheck::check(aBitmap24Bit));
if (bExportBitmap)
{