summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/pdfwriter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/gdi/pdfwriter.cxx')
-rw-r--r--vcl/source/gdi/pdfwriter.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/gdi/pdfwriter.cxx b/vcl/source/gdi/pdfwriter.cxx
index 85fae2d4b181..885bf7160acd 100644
--- a/vcl/source/gdi/pdfwriter.cxx
+++ b/vcl/source/gdi/pdfwriter.cxx
@@ -116,12 +116,12 @@ void PDFWriter::DrawLine( const Point& rStart, const Point& rStop, const LineInf
xImplementation->drawLine( rStart, rStop, rInfo );
}
-void PDFWriter::DrawPolygon( const Polygon& rPoly )
+void PDFWriter::DrawPolygon( const tools::Polygon& rPoly )
{
xImplementation->drawPolygon( rPoly );
}
-void PDFWriter::DrawPolyLine( const Polygon& rPoly )
+void PDFWriter::DrawPolyLine( const tools::Polygon& rPoly )
{
xImplementation->drawPolyLine( rPoly );
}
@@ -156,12 +156,12 @@ void PDFWriter::DrawChord( const Rectangle& rRect, const Point& rStart, const Po
xImplementation->drawArc( rRect, rStart, rStop, false, true );
}
-void PDFWriter::DrawPolyLine( const Polygon& rPoly, const LineInfo& rInfo )
+void PDFWriter::DrawPolyLine( const tools::Polygon& rPoly, const LineInfo& rInfo )
{
xImplementation->drawPolyLine( rPoly, rInfo );
}
-void PDFWriter::DrawPolyLine( const Polygon& rPoly, const ExtLineInfo& rInfo )
+void PDFWriter::DrawPolyLine( const tools::Polygon& rPoly, const ExtLineInfo& rInfo )
{
xImplementation->drawPolyLine( rPoly, rInfo );
}