summaryrefslogtreecommitdiff
path: root/vcl/quartz
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-02-25 14:30:01 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-02-26 07:34:56 +0100
commitb792e4ee22d7b625a214f6eceb1c223f35b9a606 (patch)
tree21dfaf1604cf2b2e159251f5dbb54c2b6c7dbf39 /vcl/quartz
parent4e1a2eb8b1ed1ab3e899e4f25246782165fc3ba4 (diff)
sal_uLong->sal_uInt32 in drawEPS
Change-Id: I58beedfee1a55df971e778ba2aa3b6989ba53663 Reviewed-on: https://gerrit.libreoffice.org/68341 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/quartz')
-rw-r--r--vcl/quartz/salgdicommon.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/quartz/salgdicommon.cxx b/vcl/quartz/salgdicommon.cxx
index 53f0e2706e63..ab8065f9f401 100644
--- a/vcl/quartz/salgdicommon.cxx
+++ b/vcl/quartz/salgdicommon.cxx
@@ -737,7 +737,7 @@ void AquaSalGraphics::drawBitmap( const SalTwoRect& rPosAry, const SalBitmap& rS
#ifndef IOS
bool AquaSalGraphics::drawEPS( long nX, long nY, long nWidth, long nHeight,
- void* pEpsData, sal_uLong nByteCount )
+ void* pEpsData, sal_uInt32 nByteCount )
{
// convert the raw data to an NSImageRef
NSData* xNSData = [NSData dataWithBytes:pEpsData length:static_cast<int>(nByteCount)];