diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-11-04 20:17:22 +0100 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-11-05 20:32:46 +0100 |
commit | 8a8623d819b3323fb978fccc4b01ec34bc6adaff (patch) | |
tree | 4595cecdf5e8f4f53b8d7d170503ad7dc1f49e2d /svx/inc | |
parent | 117ff6534ccf402cd323061104a4e8f7ecfa0850 (diff) |
Use more proper integer types
Change-Id: I9e1ac9f9a8d1954f570594df58c6421de13c79db
Diffstat (limited to 'svx/inc')
-rw-r--r-- | svx/inc/svdibrow.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/inc/svdibrow.hxx b/svx/inc/svdibrow.hxx index d492a9d8d9f9..bc1a0fb3753d 100644 --- a/svx/inc/svdibrow.hxx +++ b/svx/inc/svdibrow.hxx @@ -51,12 +51,12 @@ friend class ImpItemEdit; private: void ImpCtor(); - void ImpSetEntry(const ImpItemListRow& rEntry, sal_uIntPtr nEntryNum); - ImpItemListRow* ImpGetEntry(sal_uIntPtr nPos) const { return aList[nPos]; } + void ImpSetEntry(const ImpItemListRow& rEntry, std::size_t nEntryNum); + ImpItemListRow* ImpGetEntry(std::size_t nPos) const { return aList[nPos]; } void ImpSaveWhich(); void ImpRestoreWhich(); - sal_uIntPtr GetCurrentPos() const; - bool BeginChangeEntry(sal_uIntPtr nPos); + std::size_t GetCurrentPos() const; + bool BeginChangeEntry(std::size_t nPos); protected: virtual long GetRowCount() const override; |