diff options
Diffstat (limited to 'vcl/source/gdi/print3.cxx')
-rw-r--r-- | vcl/source/gdi/print3.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/gdi/print3.cxx b/vcl/source/gdi/print3.cxx index 7ce25b7ccbda..350bfdc178a6 100644 --- a/vcl/source/gdi/print3.cxx +++ b/vcl/source/gdi/print3.cxx @@ -317,7 +317,7 @@ void Printer::ImplPrintJob( const boost::shared_ptr<PrinterController>& i_pContr aBox.Execute(); } pController->setValue( OUString( "IsDirect" ), - makeAny( sal_False ) ); + makeAny( false ) ); } // setup printer @@ -497,7 +497,7 @@ void Printer::ImplPrintJob( const boost::shared_ptr<PrinterController>& i_pContr else if( aDlg.isSingleJobs() ) { pController->setValue( OUString( "PrintCollateAsSingleJobs" ), - makeAny( sal_True ) ); + makeAny( true ) ); } } catch (const std::bad_alloc&) @@ -865,7 +865,7 @@ PrinterController::PageSize vcl::ImplPrinterControllerData::modifyJobSetup( cons { bool bVal = false; i_rProps[ nProperty ].Value >>= bVal; - aPageSize.bFullPaper = static_cast<bool>(bVal); + aPageSize.bFullPaper = bVal; } else if ( i_rProps[ nProperty ].Name == "PrinterPaperTray" ) { |