diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-16 14:45:49 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-17 08:14:31 +0200 |
commit | ff1f6a5fc25db062e9a83521a657062f62f03ba6 (patch) | |
tree | 272dfa9af5ead31b61c1be34afcaf4402ff4ad77 /xmloff/source/draw/shapeexport.cxx | |
parent | 224b770fa77fe12ad5dc543ce020aca316b6558d (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 'xmloff/source/draw/shapeexport.cxx')
-rw-r--r-- | xmloff/source/draw/shapeexport.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/draw/shapeexport.cxx b/xmloff/source/draw/shapeexport.cxx index 375de1e64ba6..364750933364 100644 --- a/xmloff/source/draw/shapeexport.cxx +++ b/xmloff/source/draw/shapeexport.cxx @@ -1920,7 +1920,7 @@ void XMLShapeExport::ImpExportTextBoxShape( XML_FRAME, bCreateNewline, true ); // evtl. corner radius? - sal_Int32 nCornerRadius(0L); + sal_Int32 nCornerRadius(0); xPropSet->getPropertyValue("CornerRadius") >>= nCornerRadius; if(nCornerRadius) { @@ -1954,7 +1954,7 @@ void XMLShapeExport::ImpExportRectangleShape( ImpExportNewTrans(xPropSet, nFeatures, pRefPoint); // evtl. corner radius? - sal_Int32 nCornerRadius(0L); + sal_Int32 nCornerRadius(0); xPropSet->getPropertyValue("CornerRadius") >>= nCornerRadius; if(nCornerRadius) { @@ -2934,7 +2934,7 @@ void XMLShapeExport::ImpExportCaptionShape( ImpExportNewTrans(xPropSet, nFeatures, pRefPoint); // evtl. corner radius? - sal_Int32 nCornerRadius(0L); + sal_Int32 nCornerRadius(0); xPropSet->getPropertyValue("CornerRadius") >>= nCornerRadius; if(nCornerRadius) { |