summaryrefslogtreecommitdiff
path: root/vcl/inc
diff options
context:
space:
mode:
authorGabor Kelemen <kelemeng@ubuntu.com>2019-01-01 03:42:10 +0100
committerMichael Stahl <Michael.Stahl@cib.de>2019-01-11 18:00:11 +0100
commit0515ffdb2e4c975f1d19257dfed2a24ff3cbfdb4 (patch)
tree283965a22b522aa975f496c63836ee8117eb7785 /vcl/inc
parent46f2c64eee2213e2921f28645c4ba907d6b83885 (diff)
tdf#114441 Convert use of sal_uLong to sal_uInt32
Convert the return type of GetScanlineSize to sal_uInt32 since the type of the mnScanlineSize member of the BitmapBuffer struct is "long" Convert places that are using the value returned by this method Change-Id: I222ce30b8e8f88402ddfd25286ca3b7548a8e8fb Reviewed-on: https://gerrit.libreoffice.org/65779 Tested-by: Jenkins Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
Diffstat (limited to 'vcl/inc')
-rw-r--r--vcl/inc/bitmapwriteaccess.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/bitmapwriteaccess.hxx b/vcl/inc/bitmapwriteaccess.hxx
index b2aba128381d..f20e4e8e2e6e 100644
--- a/vcl/inc/bitmapwriteaccess.hxx
+++ b/vcl/inc/bitmapwriteaccess.hxx
@@ -30,7 +30,7 @@ public:
void CopyScanline(long nY, const BitmapReadAccess& rReadAcc);
void CopyScanline(long nY, ConstScanline aSrcScanline, ScanlineFormat nSrcScanlineFormat,
- sal_uLong nSrcScanlineSize);
+ sal_uInt32 nSrcScanlineSize);
void CopyBuffer(const BitmapReadAccess& rReadAcc);