diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-10-09 21:51:41 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-10-09 21:51:41 +0200 |
commit | 566bdd3a4dfc69431460ae04700d4b2aa9910eb6 (patch) | |
tree | dc21ebd0cd1174024aced8b99fda8bdf97bd51a1 /vcl/qa/cppunit | |
parent | 668730fbdd1ccf9a23d0a55361d019ca9e58ff39 (diff) |
warning C4805 unsafe mix of type sal_Bool and type bool
Change-Id: I9e6c8ab9e2c113ec0f207a2f96e34c0fcdb70a62
Diffstat (limited to 'vcl/qa/cppunit')
-rw-r--r-- | vcl/qa/cppunit/canvasbitmaptest.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/qa/cppunit/canvasbitmaptest.cxx b/vcl/qa/cppunit/canvasbitmaptest.cxx index fa3835a28a78..197d38ed4f56 100644 --- a/vcl/qa/cppunit/canvasbitmaptest.cxx +++ b/vcl/qa/cppunit/canvasbitmaptest.cxx @@ -753,9 +753,9 @@ void CanvasBitmapTest::runTest() aBmp = vcl::unotools::bitmapExFromXBitmap(xTestBmp); CPPUNIT_ASSERT_MESSAGE( "Palette bitmap is not transparent", - aBmp.IsTransparent() == true); + aBmp.IsTransparent()); CPPUNIT_ASSERT_MESSAGE( "Palette bitmap has no alpha", - aBmp.IsAlpha() == true); + aBmp.IsAlpha()); CPPUNIT_ASSERT_MESSAGE( "Bitmap does not have size (10,10)", aBmp.GetSizePixel() == Size(10,10)); CPPUNIT_ASSERT_MESSAGE( "Bitmap has bitcount of 24", |