vcl/qa/cppunit/bitmaprender/BitmapRenderTest.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 29ac1872c503dcd256a1ef60aa903c6e73463c78 Author: Andrea Gelmini <[email protected]> AuthorDate: Thu Jul 24 23:31:52 2025 +0200 Commit: Julien Nabet <[email protected]> CommitDate: Sat Jul 26 20:23:09 2025 +0200 Fix typo Change-Id: Id1d6e2bf124f4d7bbdb4197d379b83b4d9986971 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/188301 Tested-by: Julien Nabet <[email protected]> Reviewed-by: Julien Nabet <[email protected]> diff --git a/vcl/qa/cppunit/bitmaprender/BitmapRenderTest.cxx b/vcl/qa/cppunit/bitmaprender/BitmapRenderTest.cxx index bcb10c198903..5a39f97c8d10 100644 --- a/vcl/qa/cppunit/bitmaprender/BitmapRenderTest.cxx +++ b/vcl/qa/cppunit/bitmaprender/BitmapRenderTest.cxx @@ -186,7 +186,7 @@ void BitmapRenderTest::testAlphaVirtualDevice() pAlphaVirtualDevice->GetPixel(Point(1, 1))); pAlphaVirtualDevice->SetBackground(Wallpaper(COL_TRANSPARENT)); pAlphaVirtualDevice->Erase(); - // the backends use pre-multipled alpha, so pure transparency does not round-trip properly + // the backends use pre-multiplied alpha, so pure transparency does not round-trip properly CPPUNIT_ASSERT_EQUAL(Color(ColorAlpha, 0x00, 0x00, 0x00, 0x00), pAlphaVirtualDevice->GetPixel(Point(1, 1))); @@ -195,7 +195,7 @@ void BitmapRenderTest::testAlphaVirtualDevice() CPPUNIT_ASSERT_EQUAL(tools::Long(4), aBitmap.GetSizePixel().Width()); CPPUNIT_ASSERT_EQUAL(tools::Long(4), aBitmap.GetSizePixel().Height()); Color aColor = aBitmap.GetPixelColor(1, 1); - // the backends use pre-multipled alpha, so pure transparency does not round-trip properly + // the backends use pre-multiplied alpha, so pure transparency does not round-trip properly CPPUNIT_ASSERT_EQUAL(Color(ColorAlpha, 0x00, 0x00, 0x00, 0x00), aColor); // Draw an opaque pixel to the VirDev
