diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-14 11:21:16 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-15 07:16:48 +0100 |
commit | 17da4ab25303902dd58f854cabce59f168404e2d (patch) | |
tree | 226a52614401bfb53c95f25ff24efbe7939ba626 | |
parent | fc7909cfd1e27b82ee44f3a11d46b2d080967329 (diff) |
sal_uIntPtr->sal_uInt32 in X11SalGraphicsImpl
which matches the call sites
Change-Id: I4db0c87f29c3368f32d600a10b5f43cb5ea6027c
Reviewed-on: https://gerrit.libreoffice.org/46483
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r-- | vcl/unx/generic/gdi/gdiimpl.cxx | 2 | ||||
-rw-r--r-- | vcl/unx/generic/gdi/gdiimpl.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/vcl/unx/generic/gdi/gdiimpl.cxx b/vcl/unx/generic/gdi/gdiimpl.cxx index 84dfdff69e07..9b4c9c31d0e7 100644 --- a/vcl/unx/generic/gdi/gdiimpl.cxx +++ b/vcl/unx/generic/gdi/gdiimpl.cxx @@ -473,7 +473,7 @@ GC X11SalGraphicsImpl::SelectPen() return mpPenGC; } -void X11SalGraphicsImpl::DrawLines(sal_uLong nPoints, +void X11SalGraphicsImpl::DrawLines(sal_uInt32 nPoints, const SalPolyLine &rPoints, GC pGC, bool bClose) diff --git a/vcl/unx/generic/gdi/gdiimpl.hxx b/vcl/unx/generic/gdi/gdiimpl.hxx index fe4f47e51a94..3c7c98427034 100644 --- a/vcl/unx/generic/gdi/gdiimpl.hxx +++ b/vcl/unx/generic/gdi/gdiimpl.hxx @@ -85,7 +85,7 @@ private: GC GetInvertGC(); GC GetInvert50GC(); - void DrawLines( sal_uIntPtr nPoints, + void DrawLines( sal_uInt32 nPoints, const SalPolyLine &rPoints, GC pGC, bool bClose |