diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-29 17:01:22 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-29 18:37:50 +0200 |
commit | 1467751fd825218a44c735642d5fcb82e661ea4e (patch) | |
tree | 0de56dcfd270a32def19d2c736c7d9015e55dc77 /include | |
parent | 27f58d539d2e322f5a1c68e406abfea783be3e6a (diff) |
toolkit: std::auto_ptr -> std::unique_ptr
Change-Id: I4566a0b7215b729f04591bed0ad5bed42f71f227
Diffstat (limited to 'include')
-rw-r--r-- | include/toolkit/helper/formpdfexport.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/toolkit/helper/formpdfexport.hxx b/include/toolkit/helper/formpdfexport.hxx index 9375ca5bf81e..10300d87940e 100644 --- a/include/toolkit/helper/formpdfexport.hxx +++ b/include/toolkit/helper/formpdfexport.hxx @@ -40,9 +40,8 @@ namespace toolkitform /** creates a PDF compatible control descriptor for the given control */ - void TOOLKIT_DLLPUBLIC describePDFControl( + std::unique_ptr<vcl::PDFWriter::AnyWidget> TOOLKIT_DLLPUBLIC describePDFControl( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XControl >& _rxControl, - ::std::auto_ptr< ::vcl::PDFWriter::AnyWidget >& _rpDescriptor, ::vcl::PDFExtOutDevData& i_pdfExportData ); |