diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2020-09-10 09:38:36 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-09-10 13:36:31 +0200 |
commit | 8cd8cdcfa54ca34dc6365a398e3c69cbfc685891 (patch) | |
tree | 65a87a80c5c8d7129cf869cc3651432bde3fcff7 /vcl/win/gdi | |
parent | 834e9db7f133fd4682497ad514277b1b1758d690 (diff) |
tdf#75280: Convert some inappropriate use of sal_uIntPtr (+sal_uLong) (vcl)
Change-Id: I8708cb825fbfe8de201a2025b7f988a1db9302ab
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102361
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'vcl/win/gdi')
-rw-r--r-- | vcl/win/gdi/salprn.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/win/gdi/salprn.cxx b/vcl/win/gdi/salprn.cxx index 3f27d999d845..9d205b1d9daf 100644 --- a/vcl/win/gdi/salprn.cxx +++ b/vcl/win/gdi/salprn.cxx @@ -1319,7 +1319,7 @@ static BOOL CALLBACK SalPrintAbortProc( HDC hPrnDC, int /* nError */ ) return TRUE; } -static DEVMODEW const * ImplSalSetCopies( DEVMODEW const * pDevMode, sal_uLong nCopies, bool bCollate ) +static DEVMODEW const * ImplSalSetCopies( DEVMODEW const * pDevMode, sal_uInt32 nCopies, bool bCollate ) { if ( pDevMode && (nCopies > 1) ) { |