summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2022-02-03 10:53:49 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-02-03 13:53:50 +0100
commit9aaf8db1e4ac20fce4b19bc43c13b25938e80275 (patch)
tree1f388a0380aa1a9e31a24ae78a6bfcbfceb537f3 /svl
parent91fd537a4517409da87229fd7c0f21d269973d43 (diff)
SfxMetricItem should take signed value
since it extends SfxInt32Item been this way since commit 5f51e579fc2e3207166b053382ca14b95082728c Date: Wed Apr 11 18:28:13 2007 +0000 INTEGRATION: CWS hedaburemove01 (1.1.2); FILE ADDED 2007/02/09 16:12:44 vg 1.1.2.1: #72503# get rid of hedabu procedure: Moving headers to svtools/inc/svtools and correspondent necessary changes Change-Id: Id23909c5cb842b858baf2f6918298607a79adcec Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129402 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svl')
-rw-r--r--svl/source/items/intitem.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/items/intitem.cxx b/svl/source/items/intitem.cxx
index 7535e665f795..0ced3eb20146 100644
--- a/svl/source/items/intitem.cxx
+++ b/svl/source/items/intitem.cxx
@@ -159,7 +159,7 @@ boost::property_tree::ptree SfxUInt32Item::dumpAsJSON() const
return aTree;
}
-SfxMetricItem::SfxMetricItem(sal_uInt16 which, sal_uInt32 nValue):
+SfxMetricItem::SfxMetricItem(sal_uInt16 which, sal_Int32 nValue):
SfxInt32Item(which, nValue)
{
}