diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-03-29 13:33:06 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-03-30 15:33:32 +0100 |
commit | c54d7a83bcd742dedc3b04fe1ac0161d65e82f90 (patch) | |
tree | 615cd9c1f605176178427ebab1747d3dbd47995d /vcl | |
parent | 5be7dd66f9642c5b91fb8c2d320e71a951c2b5e3 (diff) |
coverity#1292225 variable guards dead code
Change-Id: Ie00be7806b5bce3599c47654585246edf6f8cc90
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/qa/cppunit/BitmapTest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/qa/cppunit/BitmapTest.cxx b/vcl/qa/cppunit/BitmapTest.cxx index 74e7e89d27b0..98b2e44f0235 100644 --- a/vcl/qa/cppunit/BitmapTest.cxx +++ b/vcl/qa/cppunit/BitmapTest.cxx @@ -75,7 +75,7 @@ void BitmapTest::testConvert() void BitmapTest::testScale() { - bool bExportBitmap(false); + const bool bExportBitmap(false); Bitmap aBitmap24Bit(Size(10, 10), 24); CPPUNIT_ASSERT_EQUAL(static_cast<sal_uInt16>(24), aBitmap24Bit.GetBitCount()); |