summaryrefslogtreecommitdiff
path: root/vcl/win/gdi
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2017-02-05 21:43:59 +0100
committerMatteo Casalin <matteo.casalin@yahoo.com>2017-02-05 21:44:49 +0100
commitc6f32df907983092cdb9f40c7c7ad0552caf41c3 (patch)
tree07771f4954a23254e6880e8d5b837167a429f435 /vcl/win/gdi
parenteb0b727b8775404b17d45ad6986a902701bc1e31 (diff)
sal_uIntPtr to sal_uInt16
Change-Id: If463ae457f53a0a8b12cc0748afbc654f54ae3c3
Diffstat (limited to 'vcl/win/gdi')
-rw-r--r--vcl/win/gdi/salprn.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/win/gdi/salprn.cxx b/vcl/win/gdi/salprn.cxx
index 60b5320f7c8b..f2f25d654d35 100644
--- a/vcl/win/gdi/salprn.cxx
+++ b/vcl/win/gdi/salprn.cxx
@@ -1207,7 +1207,7 @@ bool WinSalInfoPrinter::SetData( JobSetFlags nFlags, ImplJobSetup* pSetupData )
return FALSE;
}
-sal_uLong WinSalInfoPrinter::GetPaperBinCount( const ImplJobSetup* pSetupData )
+sal_uInt16 WinSalInfoPrinter::GetPaperBinCount( const ImplJobSetup* pSetupData )
{
DWORD nRet = ImplDeviceCaps( this, DC_BINS, nullptr, pSetupData );
if ( nRet && (nRet != GDI_ERROR) )
@@ -1216,7 +1216,7 @@ sal_uLong WinSalInfoPrinter::GetPaperBinCount( const ImplJobSetup* pSetupData )
return 0;
}
-OUString WinSalInfoPrinter::GetPaperBinName( const ImplJobSetup* pSetupData, sal_uLong nPaperBin )
+OUString WinSalInfoPrinter::GetPaperBinName( const ImplJobSetup* pSetupData, sal_uInt16 nPaperBin )
{
OUString aPaperBinName;