summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-08-16 14:45:49 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-08-17 08:14:31 +0200
commitff1f6a5fc25db062e9a83521a657062f62f03ba6 (patch)
tree272dfa9af5ead31b61c1be34afcaf4402ff4ad77 /filter
parent224b770fa77fe12ad5dc543ce020aca316b6558d (diff)
remove UL/L suffixes from integer constants in initialiser/call expressions
Change-Id: Iae081567c4fa5b88edbd12cf2fbafd2b8f31b300 Reviewed-on: https://gerrit.libreoffice.org/41214 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/svdfppt.cxx2
-rw-r--r--filter/source/svg/svgreader.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/filter/source/msfilter/svdfppt.cxx b/filter/source/msfilter/svdfppt.cxx
index ab919b29d04b..763614d12645 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.cxx
@@ -2596,7 +2596,7 @@ bool SdrPowerPointImport::SeekToShape( SvStream& rSt, void* pClientData, sal_uIn
const PptSlidePersistEntry& rPersist = (*pPageList)[ nMasterNum ]; // get the masterpage's persistentry
if ( rPersist.pPresentationObjects )
{
- sal_uInt32 nCurrent(0L);
+ sal_uInt32 nCurrent(0);
DffRecordList* pCList = maShapeRecords.pCList; // we got a backup of the current position
if ( pCList )
nCurrent = pCList->nCurrent;
diff --git a/filter/source/svg/svgreader.cxx b/filter/source/svg/svgreader.cxx
index 482a8343dbcd..79fb13c1e11c 100644
--- a/filter/source/svg/svgreader.cxx
+++ b/filter/source/svg/svgreader.cxx
@@ -134,7 +134,7 @@ bool PolyPolygonIsMixedOpenAndClosed( const basegfx::B2DPolyPolygon& rPoly )
// PolyPolygon is mixed open and closed if there is more than one
// polygon and there are both closed and open polygons.
- for( sal_uInt32 a(0L); !bRetval && a < rPoly.count(); a++ )
+ for( sal_uInt32 a(0); !bRetval && a < rPoly.count(); a++ )
{
if ( (rPoly.getB2DPolygon(a)).isClosed() )
{
@@ -1559,7 +1559,7 @@ struct ShapeWritingVisitor
// split mixed polypolygons into single polygons and add them one by one
if( PolyPolygonIsMixedOpenAndClosed(aPoly) )
{
- for( sal_uInt32 i(0L); i<aPoly.count(); ++i ) {
+ for( sal_uInt32 i(0); i<aPoly.count(); ++i ) {
writePathShape(xAttrs,
xUnoAttrs,
sStyleId,