summaryrefslogtreecommitdiff
path: root/include/svx/svdundo.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-12-13 12:10:13 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-12-14 07:17:00 +0100
commite9cef371fe73d3b6b08a2c3cc19fdac1863d02fa (patch)
tree5f1f0707a52615e1b9ca8781226af777874be0c9 /include/svx/svdundo.hxx
parente54cae8b40602b958db760489bf9fe048bb1aa93 (diff)
sal_uIntPtr->sal_Int32 in SdrUndoGroup
Change-Id: I286f3cb1362d033d797fdbb4cab35c8e6a30eab3 Reviewed-on: https://gerrit.libreoffice.org/46392 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx/svdundo.hxx')
-rw-r--r--include/svx/svdundo.hxx4
1 files changed, 2 insertions, 2 deletions
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; }