diff options
author | Philipp Lohmann <pl@openoffice.org> | 2002-09-27 09:00:34 +0000 |
---|---|---|
committer | Philipp Lohmann <pl@openoffice.org> | 2002-09-27 09:00:34 +0000 |
commit | e8d7de1fe7448727dc09406d0a52f61e4b9da202 (patch) | |
tree | 15db86b3645a28f76755689ac63ebf769a02d894 /vcl/source/gdi/pdfwriter.cxx | |
parent | d34f3c67ab785dbea22e89a2d9cef3fd9340dd41 (diff) |
#103759# honor push flags
Diffstat (limited to 'vcl/source/gdi/pdfwriter.cxx')
-rw-r--r-- | vcl/source/gdi/pdfwriter.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/gdi/pdfwriter.cxx b/vcl/source/gdi/pdfwriter.cxx index 128c6cec964d..1c4bc3efd6f2 100644 --- a/vcl/source/gdi/pdfwriter.cxx +++ b/vcl/source/gdi/pdfwriter.cxx @@ -2,9 +2,9 @@ * * $RCSfile: pdfwriter.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: pl $ $Date: 2002-09-11 13:38:54 $ + * last change: $Author: pl $ $Date: 2002-09-27 10:00:33 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -299,9 +299,9 @@ void PDFWriter::DrawTransparent( const PolyPolygon& rPolyPoly, USHORT nTranspare ((PDFWriterImpl*)pImplementation)->drawTransparent( rPolyPoly, nTransparencePercent ); } -void PDFWriter::Push() +void PDFWriter::Push( USHORT nFlags ) { - ((PDFWriterImpl*)pImplementation)->push(); + ((PDFWriterImpl*)pImplementation)->push( nFlags ); } void PDFWriter::Pop() |