summaryrefslogtreecommitdiffstats
path: root/svx/source/xoutdev/_xoutbmp.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/xoutdev/_xoutbmp.cxx')
-rw-r--r--svx/source/xoutdev/_xoutbmp.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/svx/source/xoutdev/_xoutbmp.cxx b/svx/source/xoutdev/_xoutbmp.cxx
index fe581c43c7cf..c6a71ae6edd3 100644
--- a/svx/source/xoutdev/_xoutbmp.cxx
+++ b/svx/source/xoutdev/_xoutbmp.cxx
@@ -479,11 +479,12 @@ Bitmap XOutBitmap::DetectEdges( const Bitmap& rBmp, const sal_uInt8 cThreshold )
return aRetBmp;
};
-Polygon XOutBitmap::GetCountour( const Bitmap& rBmp, const sal_uIntPtr nFlags,
- const sal_uInt8 cEdgeDetectThreshold, const Rectangle* pWorkRectPixel )
+tools::Polygon XOutBitmap::GetCountour( const Bitmap& rBmp, const sal_uIntPtr nFlags,
+ const sal_uInt8 cEdgeDetectThreshold,
+ const Rectangle* pWorkRectPixel )
{
Bitmap aWorkBmp;
- Polygon aRetPoly;
+ tools::Polygon aRetPoly;
Point aTmpPoint;
Rectangle aWorkRect( aTmpPoint, rBmp.GetSizePixel() );
@@ -599,7 +600,7 @@ Polygon XOutBitmap::GetCountour( const Bitmap& rBmp, const sal_uIntPtr nFlags,
const sal_uInt16 nNewSize1 = nPolyPos << 1;
- aRetPoly = Polygon( nPolyPos, pPoints1.get() );
+ aRetPoly = tools::Polygon( nPolyPos, pPoints1.get() );
aRetPoly.SetSize( nNewSize1 + 1 );
aRetPoly[ nNewSize1 ] = aRetPoly[ 0 ];