diff options
author | Noel Grandin <noel@peralex.com> | 2016-09-06 15:39:01 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-09-07 06:49:12 +0000 |
commit | 673b436c3592c5747f3dce4947168d6fa3ba45ea (patch) | |
tree | e5711bd1da76e9a554954f7275784fca4429c29f /vcl/qa | |
parent | 702496391b2b9ef53f83752b34feb3c33d7fb4e9 (diff) |
loplugin:constantparam in vcl
Change-Id: I0cae8e5de1170dec4c82df7f1f5377143a079876
Reviewed-on: https://gerrit.libreoffice.org/28686
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl/qa')
-rw-r--r-- | vcl/qa/cppunit/BitmapTest.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/qa/cppunit/BitmapTest.cxx b/vcl/qa/cppunit/BitmapTest.cxx index 6823cfb4e28d..35b31fdf7fb5 100644 --- a/vcl/qa/cppunit/BitmapTest.cxx +++ b/vcl/qa/cppunit/BitmapTest.cxx @@ -128,7 +128,7 @@ void BitmapTest::testScale() { SvFileStream aStream(OUString("~/scale_before.png"), StreamMode::WRITE | StreamMode::TRUNC); GraphicFilter& rFilter = GraphicFilter::GetGraphicFilter(); - rFilter.compressAsPNG(aBitmap24Bit, aStream, 9); + rFilter.compressAsPNG(aBitmap24Bit, aStream); } aBitmap24Bit.Scale(2, 2, BmpScaleFlag::Fast); @@ -144,7 +144,7 @@ void BitmapTest::testScale() { SvFileStream aStream(OUString("~/scale_after.png"), StreamMode::WRITE | StreamMode::TRUNC); GraphicFilter& rFilter = GraphicFilter::GetGraphicFilter(); - rFilter.compressAsPNG(aBitmap24Bit, aStream, 9); + rFilter.compressAsPNG(aBitmap24Bit, aStream); } } |