summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/pdfwriter.cxx
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2007-03-26 10:20:49 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2007-03-26 10:20:49 +0000
commitf91978412884826b93c0bb709208777f98a08752 (patch)
treece9eea24feb8417933236b7bae4bfbaf968083c5 /vcl/source/gdi/pdfwriter.cxx
parentf4761fc85241211f0913856b076fb042d7e2c15c (diff)
INTEGRATION: CWS ipdf (1.15.180); FILE MERGED
2007/01/19 11:48:34 pl 1.15.180.3: RESYNC: (1.16-1.17); FILE MERGED 2006/10/04 18:51:55 pl 1.15.180.2: RESYNC: (1.15-1.16); FILE MERGED 2006/06/12 16:53:42 pl 1.15.180.1: #137143# add AddStream interface
Diffstat (limited to 'vcl/source/gdi/pdfwriter.cxx')
-rw-r--r--vcl/source/gdi/pdfwriter.cxx14
1 files changed, 12 insertions, 2 deletions
diff --git a/vcl/source/gdi/pdfwriter.cxx b/vcl/source/gdi/pdfwriter.cxx
index 0e0d6561a0fd..c7ec2b005cf7 100644
--- a/vcl/source/gdi/pdfwriter.cxx
+++ b/vcl/source/gdi/pdfwriter.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: pdfwriter.cxx,v $
*
- * $Revision: 1.17 $
+ * $Revision: 1.18 $
*
- * last change: $Author: rt $ $Date: 2006-12-04 08:32:05 $
+ * last change: $Author: ihi $ $Date: 2007-03-26 11:20:49 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -525,6 +525,15 @@ sal_Int32 PDFWriter::CreateControl( const PDFWriter::AnyWidget& rControl, sal_In
return ((PDFWriterImpl*)pImplementation)->createControl( rControl, nPageNr );
}
+PDFOutputStream::~PDFOutputStream()
+{
+}
+
+void PDFWriter::AddStream( const String& rMimeType, PDFOutputStream* pStream, bool bCompress )
+{
+ ((PDFWriterImpl*)pImplementation)->addStream( rMimeType, pStream, bCompress );
+}
+
void PDFWriter::BeginPattern()
{
((PDFWriterImpl*)pImplementation)->beginPattern();
@@ -539,3 +548,4 @@ void PDFWriter::DrawPolyPolygon( const PolyPolygon& rPolyPoly, sal_Int32 nPatter
{
((PDFWriterImpl*)pImplementation)->drawPolyPolygon( rPolyPoly, nPattern, bEOFill );
}
+