summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/bitmap3.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-04-01 08:33:09 +0200
committerNoel Grandin <noel@peralex.com>2015-04-01 10:37:02 +0200
commit3e672693e35e720177eac98094c42570fca9cfbb (patch)
treec9ef0c732ca293a4b26037a72cd6e612dfaa4ac5 /vcl/source/gdi/bitmap3.cxx
parentedc189dbfac35d9a587ec50d0f382bb66444eca8 (diff)
loplugin:staticfunction
Change-Id: I909cf7e77f9d7194575636248196fda311fffdb6
Diffstat (limited to 'vcl/source/gdi/bitmap3.cxx')
-rw-r--r--vcl/source/gdi/bitmap3.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/gdi/bitmap3.cxx b/vcl/source/gdi/bitmap3.cxx
index 5bf275d98832..60ed14d9f3ae 100644
--- a/vcl/source/gdi/bitmap3.cxx
+++ b/vcl/source/gdi/bitmap3.cxx
@@ -2447,12 +2447,12 @@ void Bitmap::ImplMedianCut( sal_uLong* pColBuf, BitmapPalette& rPal,
bool Bitmap::Vectorize( tools::PolyPolygon& rPolyPoly, sal_uLong nFlags, const Link* pProgress )
{
- return ImplVectorizer().ImplVectorize( *this, rPolyPoly, nFlags, pProgress );
+ return ImplVectorizer::ImplVectorize( *this, rPolyPoly, nFlags, pProgress );
}
bool Bitmap::Vectorize( GDIMetaFile& rMtf, sal_uInt8 cReduce, sal_uLong nFlags, const Link* pProgress )
{
- return ImplVectorizer().ImplVectorize( *this, rMtf, cReduce, nFlags, pProgress );
+ return ImplVectorizer::ImplVectorize( *this, rMtf, cReduce, nFlags, pProgress );
}
bool Bitmap::Adjust( short nLuminancePercent, short nContrastPercent,