summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-12-12 13:16:26 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-12-13 07:49:03 +0100
commit71048589d4a653614d2fa35294a324111ef2759f (patch)
treed2d4c0100165cf656d60dc331cfbe2d3395ce398 /svx
parent719af6a334ecf1a0bbe5a752e5baf553b685e83c (diff)
sal_uIntPtr->sal_uInt32 in SdrModel
to match the underlying field Change-Id: I4145df0fc308c09eca29f779a0ff241e4301db0b Reviewed-on: https://gerrit.libreoffice.org/46345 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdmodel.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdmodel.cxx b/svx/source/svdraw/svdmodel.cxx
index 1290930214a8..7f57ab72850b 100644
--- a/svx/source/svdraw/svdmodel.cxx
+++ b/svx/source/svdraw/svdmodel.cxx
@@ -311,7 +311,7 @@ void SdrModel::SetReadOnly(bool bYes)
}
-void SdrModel::SetMaxUndoActionCount(sal_uIntPtr nCount)
+void SdrModel::SetMaxUndoActionCount(sal_uInt32 nCount)
{
if (nCount<1) nCount=1;
nMaxUndoCount=nCount;