diff options
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/osx/salprn.cxx | 4 | ||||
-rw-r--r-- | vcl/unx/generic/print/genprnpsp.cxx | 4 | ||||
-rw-r--r-- | vcl/win/gdi/salprn.cxx | 6 |
3 files changed, 0 insertions, 14 deletions
diff --git a/vcl/osx/salprn.cxx b/vcl/osx/salprn.cxx index 562e4d0d3705..7d48ffa99d16 100644 --- a/vcl/osx/salprn.cxx +++ b/vcl/osx/salprn.cxx @@ -281,10 +281,6 @@ sal_uInt32 AquaSalInfoPrinter::GetCapabilities( const ImplJobSetup*, PrinterCapT return 0xffff; case PrinterCapType::SetOrientation: return 1; - case PrinterCapType::SetDuplex: - return 0; - case PrinterCapType::SetPaperBin: - return 0; case PrinterCapType::SetPaperSize: return 1; case PrinterCapType::SetPaper: diff --git a/vcl/unx/generic/print/genprnpsp.cxx b/vcl/unx/generic/print/genprnpsp.cxx index 25bc3a1a9387..7f6d70fccd51 100644 --- a/vcl/unx/generic/print/genprnpsp.cxx +++ b/vcl/unx/generic/print/genprnpsp.cxx @@ -791,10 +791,6 @@ sal_uInt32 PspSalInfoPrinter::GetCapabilities( const ImplJobSetup* pJobSetup, Pr } case PrinterCapType::SetOrientation: return 1; - case PrinterCapType::SetDuplex: - return 1; - case PrinterCapType::SetPaperBin: - return 1; case PrinterCapType::SetPaperSize: return 1; case PrinterCapType::SetPaper: diff --git a/vcl/win/gdi/salprn.cxx b/vcl/win/gdi/salprn.cxx index 63c0c24ba810..bd3dd8a5f02f 100644 --- a/vcl/win/gdi/salprn.cxx +++ b/vcl/win/gdi/salprn.cxx @@ -1241,12 +1241,6 @@ sal_uInt32 WinSalInfoPrinter::GetCapabilities( const ImplJobSetup* pSetupData, P return TRUE; return FALSE; - case PrinterCapType::SetPaperBin: - nRet = ImplDeviceCaps( this, DC_BINS, nullptr, pSetupData ); - if ( nRet && (nRet != GDI_ERROR) ) - return TRUE; - return FALSE; - case PrinterCapType::SetPaperSize: case PrinterCapType::SetPaper: nRet = ImplDeviceCaps( this, DC_PAPERS, nullptr, pSetupData ); |