summaryrefslogtreecommitdiff
path: root/vcl/qa
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/qa
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/qa')
-rw-r--r--vcl/qa/cppunit/fontmetric.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/qa/cppunit/fontmetric.cxx b/vcl/qa/cppunit/fontmetric.cxx
index 93378c6e581c..3166752f3273 100644
--- a/vcl/qa/cppunit/fontmetric.cxx
+++ b/vcl/qa/cppunit/fontmetric.cxx
@@ -68,13 +68,13 @@ void VclFontMetricTest::testSpacings()
aFontMetric.SetDescent( 100 );
CPPUNIT_ASSERT_EQUAL( aFontMetric.GetDescent(), 100L );
- aFontMetric.SetExternalLeading( 100L );
+ aFontMetric.SetExternalLeading( 100 );
CPPUNIT_ASSERT_EQUAL( aFontMetric.GetExternalLeading(), 100L );
- aFontMetric.SetInternalLeading( 100L );
+ aFontMetric.SetInternalLeading( 100 );
CPPUNIT_ASSERT_EQUAL( aFontMetric.GetInternalLeading(), 100L );
- aFontMetric.SetLineHeight( 100L );
+ aFontMetric.SetLineHeight( 100 );
CPPUNIT_ASSERT_EQUAL( aFontMetric.GetLineHeight(), 100L );
}