summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/impvect.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-04-04 15:33:20 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-04-04 17:13:21 +0100
commit1a3c99f2c31dbc4dd6b3b5788ea0b49a34bea2c6 (patch)
treea2be3e4b33ed214e331b013983643fc8cd488cbf /vcl/source/gdi/impvect.hxx
parent9f1be6c65210e600baee5c63480df58e8b8ce7b1 (diff)
callcatcher: update unusedcode
mostly changed due to loplugin:constantfunction Change-Id: Ib677c78db256f8032a99b3f02a3e363fee68ebcc
Diffstat (limited to 'vcl/source/gdi/impvect.hxx')
-rw-r--r--vcl/source/gdi/impvect.hxx28
1 files changed, 5 insertions, 23 deletions
diff --git a/vcl/source/gdi/impvect.hxx b/vcl/source/gdi/impvect.hxx
index 0051bef68bab..4e1ec38b7b17 100644
--- a/vcl/source/gdi/impvect.hxx
+++ b/vcl/source/gdi/impvect.hxx
@@ -24,30 +24,12 @@
#include <vcl/gdimtf.hxx>
// - Vectorizer -
-
-class BitmapReadAccess;
-class ImplChain;
-class ImplVectMap;
-
-class ImplVectorizer
+namespace ImplVectorizer
{
-private:
-
- static ImplVectMap* ImplExpand( BitmapReadAccess* pRAcc, const Color& rColor );
- static void ImplCalculate( ImplVectMap* pMap, tools::PolyPolygon& rPolyPoly, sal_uInt8 cReduce, sal_uLong nFlags );
- static bool ImplGetChain( ImplVectMap* pMap, const Point& rStartPt, ImplChain& rChain );
- static bool ImplIsUp( ImplVectMap* pMap, long nY, long nX );
- static void ImplLimitPolyPoly( tools::PolyPolygon& rPolyPoly );
-
-public:
-
- ImplVectorizer();
- ~ImplVectorizer();
-
- static bool ImplVectorize( const Bitmap& rColorBmp, GDIMetaFile& rMtf,
- sal_uInt8 cReduce, sal_uLong nFlags, const Link* pProgress );
- static bool ImplVectorize( const Bitmap& rMonoBmp, tools::PolyPolygon& rPolyPoly,
- sal_uLong nFlags, const Link* pProgress );
+ bool ImplVectorize( const Bitmap& rColorBmp, GDIMetaFile& rMtf,
+ sal_uInt8 cReduce, sal_uLong nFlags, const Link* pProgress );
+ bool ImplVectorize( const Bitmap& rMonoBmp, tools::PolyPolygon& rPolyPoly,
+ sal_uLong nFlags, const Link* pProgress );
};
#endif