Kaydet (Commit) ad913d20 authored tarafından Vladimir Glazounov's avatar Vladimir Glazounov

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
üst ff1e38aa
......@@ -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()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment