From e9cef371fe73d3b6b08a2c3cc19fdac1863d02fa Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 13 Dec 2017 12:10:13 +0200 Subject: sal_uIntPtr->sal_Int32 in SdrUndoGroup Change-Id: I286f3cb1362d033d797fdbb4cab35c8e6a30eab3 Reviewed-on: https://gerrit.libreoffice.org/46392 Tested-by: Jenkins Reviewed-by: Noel Grandin --- include/svx/svdundo.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/svx/svdundo.hxx') diff --git a/include/svx/svdundo.hxx b/include/svx/svdundo.hxx index d14eb77d9e36..5fd24db225d5 100644 --- a/include/svx/svdundo.hxx +++ b/include/svx/svdundo.hxx @@ -98,8 +98,8 @@ public: virtual ~SdrUndoGroup() override; void Clear(); - sal_uIntPtr GetActionCount() const { return aBuf.size(); } - SdrUndoAction* GetAction(sal_uIntPtr nNum) const { return aBuf[nNum]; } + sal_Int32 GetActionCount() const { return aBuf.size(); } + SdrUndoAction* GetAction(sal_Int32 nNum) const { return aBuf[nNum]; } void AddAction(SdrUndoAction* pAct); void SetComment(const OUString& rStr) { aComment=rStr; } -- cgit