diff options
author | Pascal Junck <pjunck@openoffice.org> | 2004-10-28 09:33:09 +0000 |
---|---|---|
committer | Pascal Junck <pjunck@openoffice.org> | 2004-10-28 09:33:09 +0000 |
commit | 90047723cee6c7f1fffb0e114fe59b3dac8794ef (patch) | |
tree | 5eaa0a3ab11d584651f5232ab8aa08a94432090f /vcl | |
parent | 174378479b8c0e6c68b4ce43629160f9221fb3e3 (diff) |
INTEGRATION: CWS pdf02 (1.10.10); FILE MERGED
2004/09/21 12:32:53 pl 1.10.10.1: #i33091# add support for SvtGraphicStroke
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/pdfwriter.cxx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/vcl/source/gdi/pdfwriter.cxx b/vcl/source/gdi/pdfwriter.cxx index bec3cf6e0d66..5bd5a5eb1f77 100644 --- a/vcl/source/gdi/pdfwriter.cxx +++ b/vcl/source/gdi/pdfwriter.cxx @@ -2,9 +2,9 @@ * * $RCSfile: pdfwriter.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: hr $ $Date: 2004-09-08 16:21:25 $ + * last change: $Author: pjunck $ $Date: 2004-10-28 10:33:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -209,6 +209,11 @@ void PDFWriter::DrawPolyLine( const Polygon& rPoly, const LineInfo& rInfo ) ((PDFWriterImpl*)pImplementation)->drawPolyLine( rPoly, rInfo ); } +void PDFWriter::DrawPolyLine( const Polygon& rPoly, const ExtLineInfo& rInfo ) +{ + ((PDFWriterImpl*)pImplementation)->drawPolyLine( rPoly, rInfo ); +} + void PDFWriter::DrawPolyPolygon( const PolyPolygon& rPolyPoly ) { ((PDFWriterImpl*)pImplementation)->drawPolyPolygon( rPolyPoly ); |