diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-22 11:28:14 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-22 11:39:20 +0100 |
commit | 11bdc1bd913bd3a631ba10a97ba7890917eda898 (patch) | |
tree | d14378a5cf2c9c3af18a367769b0c22063da24a3 /vcl/qa/cppunit | |
parent | 89cd19fdcb5b49c0853c32cd47950c11c0714d20 (diff) |
bool improvements
Change-Id: Id242594559883654aa8cb78fc15b81f78ed803ee
Diffstat (limited to 'vcl/qa/cppunit')
-rw-r--r-- | vcl/qa/cppunit/canvasbitmaptest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/qa/cppunit/canvasbitmaptest.cxx b/vcl/qa/cppunit/canvasbitmaptest.cxx index c3e8cac179d1..0ab344dd402e 100644 --- a/vcl/qa/cppunit/canvasbitmaptest.cxx +++ b/vcl/qa/cppunit/canvasbitmaptest.cxx @@ -732,7 +732,7 @@ void CanvasBitmapTest::runTest() BitmapEx aBmp = vcl::unotools::bitmapExFromXBitmap(xTestBmp); CPPUNIT_ASSERT_MESSAGE( "Palette bitmap is transparent", - aBmp.IsTransparent() == false); + !aBmp.IsTransparent()); CPPUNIT_ASSERT_MESSAGE( "Bitmap does not have size (10,10)", aBmp.GetSizePixel() == Size(10,10)); CPPUNIT_ASSERT_MESSAGE( "Bitmap does not have bitcount of 8", |