[Libreoffice-commits] core.git: basebmp/test

Caolán McNamara caolanm at redhat.com
Sat Jul 4 06:08:54 PDT 2015


 basebmp/test/bmpmasktest.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 3cfa4f26616411caf5c9c6c91ccd5ded7e10b035
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Sat Jul 4 13:55:07 2015 +0100

    bmpmasktest was little-endian only
    
    Change-Id: Icf362281c54509211b08c8bf5e29a0e31d9eb835

diff --git a/basebmp/test/bmpmasktest.cxx b/basebmp/test/bmpmasktest.cxx
index 4b64307..f8b20a5 100644
--- a/basebmp/test/bmpmasktest.cxx
+++ b/basebmp/test/bmpmasktest.cxx
@@ -206,11 +206,11 @@ public:
             DrawMode::Paint );
 
         CPPUNIT_ASSERT_MESSAGE( "output not cleared to white",
-                                xOutput->getPixelData( basegfx::B2IPoint( 0, 0 ) ) == 0xffffff );
+                                xOutput->getPixel( basegfx::B2IPoint( 0, 0 ) ) == Color(0xffffff) );
         CPPUNIT_ASSERT_MESSAGE( "bitmap not drawn",
-                                xOutput->getPixelData( basegfx::B2IPoint( 2, 2 ) ) == 0x808080 );
+                                xOutput->getPixel( basegfx::B2IPoint( 2, 2 ) ) == Color(0x808080) );
         CPPUNIT_ASSERT_MESSAGE( "mask not applied",
-                                xOutput->getPixelData( basegfx::B2IPoint( 6, 6 ) ) == 0xffffff );
+                                xOutput->getPixel( basegfx::B2IPoint( 6, 6 ) ) == Color(0xffffff) );
     }
 
     // Change the following lines only, if you add, remove or rename


More information about the Libreoffice-commits mailing list