summaryrefslogtreecommitdiff
path: root/vcl/source
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-01-29 07:22:50 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-01-29 07:22:50 +0000
commitad913d20b703d43c542816c7ff6a79e4ba243ec3 (patch)
tree00fe5c3f5a81da5f5e10ea481dd856ef619f70f4 /vcl/source
parentff1e38aa7b02728bc584171d0864309a4ab7269b (diff)
INTEGRATION: CWS tagged01 (1.20.154); FILE MERGED
2008/01/08 11:52:09 fme 1.20.154.3: RESYNC: (1.20-1.21); FILE MERGED 2007/12/21 12:18:24 pl 1.20.154.2: #i84260# aliased structure element names 2007/12/20 14:24:31 pl 1.20.154.1: #i84261# add document language
Diffstat (limited to 'vcl/source')
-rw-r--r--vcl/source/gdi/pdfwriter.cxx13
1 files changed, 9 insertions, 4 deletions
diff --git a/vcl/source/gdi/pdfwriter.cxx b/vcl/source/gdi/pdfwriter.cxx
index 6515275ed280..fd4674c463fa 100644
--- a/vcl/source/gdi/pdfwriter.cxx
+++ b/vcl/source/gdi/pdfwriter.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: pdfwriter.cxx,v $
*
- * $Revision: 1.21 $
+ * $Revision: 1.22 $
*
- * last change: $Author: ihi $ $Date: 2007-11-20 17:11:16 $
+ * last change: $Author: vg $ $Date: 2008-01-29 08:22:50 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -87,6 +87,11 @@ const PDFDocInfo& PDFWriter::GetDocInfo() const
return ((PDFWriterImpl*)pImplementation)->getDocInfo();
}
+void PDFWriter::SetDocumentLocale( const com::sun::star::lang::Locale& rLoc )
+{
+ ((PDFWriterImpl*)pImplementation)->setDocumentLocale( rLoc );
+}
+
void PDFWriter::SetFont( const Font& rFont )
{
((PDFWriterImpl*)pImplementation)->setFont( rFont );
@@ -470,9 +475,9 @@ void PDFWriter::CreateNote( const Rectangle& rRect, const PDFNote& rNote, sal_In
((PDFWriterImpl*)pImplementation)->createNote( rRect, rNote, nPageNr );
}
-sal_Int32 PDFWriter::BeginStructureElement( PDFWriter::StructElement eType )
+sal_Int32 PDFWriter::BeginStructureElement( PDFWriter::StructElement eType, const rtl::OUString& rAlias )
{
- return ((PDFWriterImpl*)pImplementation)->beginStructureElement( eType );
+ return ((PDFWriterImpl*)pImplementation)->beginStructureElement( eType, rAlias );
}
void PDFWriter::EndStructureElement()