diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-02-06 16:53:19 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-02-06 16:53:19 +0000 |
commit | cf4a5a4a9cfb055e39cb134423789fb7b3847b8e (patch) | |
tree | 42d651af31a87f7af79e867d3c25b48a65fc903d /vcl/osx | |
parent | f45c52d0c8fc326b4cb12e1b8f581a60991079ba (diff) |
fix mac build
Change-Id: Ic98ada6d0bca124194cea24a1ed30d30a1c0a85e
Diffstat (limited to 'vcl/osx')
-rw-r--r-- | vcl/osx/salprn.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/osx/salprn.cxx b/vcl/osx/salprn.cxx index f8fe42280b84..db138ef7f3c3 100644 --- a/vcl/osx/salprn.cxx +++ b/vcl/osx/salprn.cxx @@ -448,7 +448,7 @@ bool AquaSalInfoPrinter::StartJob( const OUString* i_pFileName, // information (e.g. brochure printing scales to the found paper size) // also SetPaperSizeUser has the advantage that we can share a // platform independent paper matching algorithm - boost::shared_ptr<Printer> pPrinter( i_rController.getPrinter() ); + std::shared_ptr<Printer> pPrinter( i_rController.getPrinter() ); pPrinter->SetMapMode( MapMode( MAP_100TH_MM ) ); pPrinter->SetPaperSizeUser( aCurSize, true ); |