diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-23 10:32:47 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-23 12:05:04 +0200 |
commit | 1c909a13a0816e20d365000cc527d93e02633b0c (patch) | |
tree | 7a402659f9696c01ceeca51c5ddd2127b3b0e815 /include/vcl/pdfwriter.hxx | |
parent | d29e614ff9cd91c4e4a1bada6a21884e33323f8d (diff) |
com::sun::star->css in include/ucbhelper to include/xmlscript
Change-Id: Iaa7f0b8455a601d3992c08cde0943c709c417256
Diffstat (limited to 'include/vcl/pdfwriter.hxx')
-rw-r--r-- | include/vcl/pdfwriter.hxx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/include/vcl/pdfwriter.hxx b/include/vcl/pdfwriter.hxx index 592c4239e7de..f6ed9a322b46 100644 --- a/include/vcl/pdfwriter.hxx +++ b/include/vcl/pdfwriter.hxx @@ -73,7 +73,7 @@ class VCL_DLLPUBLIC PDFOutputStream { public: virtual ~PDFOutputStream(); - virtual void write( const com::sun::star::uno::Reference< com::sun::star::io::XOutputStream >& xStream ) = 0; + virtual void write( const css::uno::Reference< css::io::XOutputStream >& xStream ) = 0; }; class VCL_DLLPUBLIC PDFWriter @@ -624,16 +624,16 @@ The following structure describes the permissions used in PDF security PDFWriter::PDFDocInfo DocumentInfo; bool SignPDF; - OUString SignLocation; - OUString SignPassword; - OUString SignReason; - OUString SignContact; - com::sun::star::lang::Locale DocumentLocale; // defines the document default language + OUString SignLocation; + OUString SignPassword; + OUString SignReason; + OUString SignContact; + css::lang::Locale DocumentLocale; // defines the document default language sal_uInt32 DPIx, DPIy; // how to handle MapMode( MAP_PIXEL ) // 0 here specifies a default handling PDFWriter::ColorMode ColorMode; - com::sun::star::uno::Reference< com::sun::star::security::XCertificate> SignCertificate; - OUString SignTSA; + css::uno::Reference< css::security::XCertificate> SignCertificate; + OUString SignTSA; PDFWriterContext() : RelFsys( false ), //i56629, i49415?, i64585? @@ -668,7 +668,7 @@ The following structure describes the permissions used in PDF security {} }; - PDFWriter( const PDFWriterContext& rContext, const com::sun::star::uno::Reference< com::sun::star::beans::XMaterialHolder >& ); + PDFWriter( const PDFWriterContext& rContext, const css::uno::Reference< css::beans::XMaterialHolder >& ); ~PDFWriter(); /** Returns an OutputDevice for formatting @@ -714,7 +714,7 @@ The following structure describes the permissions used in PDF security /* sets the document locale originally passed with the context to a new value * only affects the output if used before calling Emit. */ - void SetDocumentLocale( const com::sun::star::lang::Locale& rDocLocale ); + void SetDocumentLocale( const css::lang::Locale& rDocLocale ); /* finishes the file */ bool Emit(); @@ -726,7 +726,7 @@ The following structure describes the permissions used in PDF security */ std::set< ErrorCode > GetErrors(); - static com::sun::star::uno::Reference< com::sun::star::beans::XMaterialHolder > + static css::uno::Reference< css::beans::XMaterialHolder > InitEncryption( const OUString& i_rOwnerPassword, const OUString& i_rUserPassword, bool b128Bit |