summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/impvect.cxx
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 /vcl/source/gdi/impvect.cxx
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 'vcl/source/gdi/impvect.cxx')
-rw-r--r--vcl/source/gdi/impvect.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/gdi/impvect.cxx b/vcl/source/gdi/impvect.cxx
index 96cf9728d657..b8cf13fe727f 100644
--- a/vcl/source/gdi/impvect.cxx
+++ b/vcl/source/gdi/impvect.cxx
@@ -144,8 +144,8 @@ public:
ImplPointArray::ImplPointArray() :
mpArray ( nullptr ),
- mnSize ( 0UL ),
- mnRealSize ( 0UL )
+ mnSize ( 0 ),
+ mnRealSize ( 0 )
{
}
@@ -290,8 +290,8 @@ public:
};
ImplChain::ImplChain() :
- mnArraySize ( 1024UL ),
- mnCount ( 0UL )
+ mnArraySize ( 1024 ),
+ mnCount ( 0 )
{
mpCodes.reset( new sal_uInt8[ mnArraySize ] );
}