summaryrefslogtreecommitdiffstats
path: root/vcl/source/filter/wmf/winwmf.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/filter/wmf/winwmf.cxx')
-rw-r--r--vcl/source/filter/wmf/winwmf.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/filter/wmf/winwmf.cxx b/vcl/source/filter/wmf/winwmf.cxx
index 821e50b2a1fd..9c818292b1e1 100644
--- a/vcl/source/filter/wmf/winwmf.cxx
+++ b/vcl/source/filter/wmf/winwmf.cxx
@@ -348,7 +348,7 @@ void WMFReader::ReadRecordParams( sal_uInt16 nFunc )
// Number of points of each polygon. Determine total number of points
boost::scoped_array<sal_uInt16> xPolygonPointCounts(new sal_uInt16[nPolyCount]);
sal_uInt16* pnPoints = xPolygonPointCounts.get();
- PolyPolygon aPolyPoly(nPolyCount, nPolyCount);
+ tools::PolyPolygon aPolyPoly(nPolyCount, nPolyCount);
sal_uInt16 nPoints = 0;
for (sal_uInt16 a = 0; a < nPolyCount && pWMF->good(); ++a)
{
@@ -906,7 +906,7 @@ void WMFReader::ReadRecordParams( sal_uInt16 nFunc )
pWMF->ReadInt16( nObjIndex );
if ( !nObjIndex )
{
- PolyPolygon aEmptyPolyPoly;
+ tools::PolyPolygon aEmptyPolyPoly;
pOut->SetClipPath( aEmptyPolyPoly, RGN_COPY, true );
}
}