summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbdallah Elhdad <abdallah31009448@f-eng.tanta.edu.eg>2023-03-02 18:02:51 +0200
committerAndreas Heinisch <andreas.heinisch@yahoo.de>2023-03-11 13:26:56 +0000
commit1927c6687ffc45a639aa5aaed1e6c7d2f9892b85 (patch)
treec4ed971c9becfb46f0a7b7d44f71cda91f81bbd5
parent1015770d87fb5287fd46921a94623fab07351c1b (diff)
tdf#114441 Convert sal_uLong to sal_uInt32
Change-Id: Iab17a199d15204a6944b415b170e813d4f9d7bfe Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148137 Tested-by: Jenkins Reviewed-by: Andreas Heinisch <andreas.heinisch@yahoo.de>
-rw-r--r--include/vcl/pdfwriter.hxx2
-rw-r--r--vcl/source/gdi/pdfwriter.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/pdfwriter.hxx b/include/vcl/pdfwriter.hxx
index 21f44e491b4a..f415fa59699f 100644
--- a/include/vcl/pdfwriter.hxx
+++ b/include/vcl/pdfwriter.hxx
@@ -796,7 +796,7 @@ The following structure describes the permissions used in PDF security
void DrawPolyPolygon( const tools::PolyPolygon& rPolyPoly );
void DrawRect( const tools::Rectangle& rRect );
void DrawRect( const tools::Rectangle& rRect,
- sal_uLong nHorzRount, sal_uLong nVertRound );
+ sal_uInt32 nHorzRount, sal_uInt32 nVertRound );
void DrawEllipse( const tools::Rectangle& rRect );
void DrawArc( const tools::Rectangle& rRect,
const Point& rStartPt, const Point& rEndPt );
diff --git a/vcl/source/gdi/pdfwriter.cxx b/vcl/source/gdi/pdfwriter.cxx
index 2582b392b1ae..23d986313c5b 100644
--- a/vcl/source/gdi/pdfwriter.cxx
+++ b/vcl/source/gdi/pdfwriter.cxx
@@ -132,7 +132,7 @@ void PDFWriter::DrawRect( const tools::Rectangle& rRect )
xImplementation->drawRectangle( rRect );
}
-void PDFWriter::DrawRect( const tools::Rectangle& rRect, sal_uLong nHorzRound, sal_uLong nVertRound )
+void PDFWriter::DrawRect( const tools::Rectangle& rRect, sal_uInt32 nHorzRound, sal_uInt32 nVertRound )
{
xImplementation->drawRectangle( rRect, nHorzRound, nVertRound );
}