Kaydet (Commit) 566bdd3a authored tarafından Michael Stahl's avatar Michael Stahl

warning C4805 unsafe mix of type sal_Bool and type bool

Change-Id: I9e6c8ab9e2c113ec0f207a2f96e34c0fcdb70a62
üst 668730fb
...@@ -753,9 +753,9 @@ void CanvasBitmapTest::runTest() ...@@ -753,9 +753,9 @@ void CanvasBitmapTest::runTest()
aBmp = vcl::unotools::bitmapExFromXBitmap(xTestBmp); aBmp = vcl::unotools::bitmapExFromXBitmap(xTestBmp);
CPPUNIT_ASSERT_MESSAGE( "Palette bitmap is not transparent", CPPUNIT_ASSERT_MESSAGE( "Palette bitmap is not transparent",
aBmp.IsTransparent() == true); aBmp.IsTransparent());
CPPUNIT_ASSERT_MESSAGE( "Palette bitmap has no alpha", CPPUNIT_ASSERT_MESSAGE( "Palette bitmap has no alpha",
aBmp.IsAlpha() == true); aBmp.IsAlpha());
CPPUNIT_ASSERT_MESSAGE( "Bitmap does not have size (10,10)", CPPUNIT_ASSERT_MESSAGE( "Bitmap does not have size (10,10)",
aBmp.GetSizePixel() == Size(10,10)); aBmp.GetSizePixel() == Size(10,10));
CPPUNIT_ASSERT_MESSAGE( "Bitmap has bitcount of 24", CPPUNIT_ASSERT_MESSAGE( "Bitmap has bitcount of 24",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment