diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-03-09 15:11:52 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-03-09 15:12:48 +0100 |
commit | fee2de9cb1f4763a0e4f7e0e3bae6858c3d458b4 (patch) | |
tree | a53d0c2a240303f162aa51a21f8149d289604db3 /include/sfx2 | |
parent | c0b72399bb6bceb3d227b3323aabeaf768d31cb8 (diff) |
Clean up uses of integer types
Change-Id: If022ca9de8db49b885065c32b4f6f89debae1392
Diffstat (limited to 'include/sfx2')
-rw-r--r-- | include/sfx2/bindings.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/sfx2/bindings.hxx b/include/sfx2/bindings.hxx index 20f65d3b76ca..ea67658f0530 100644 --- a/include/sfx2/bindings.hxx +++ b/include/sfx2/bindings.hxx @@ -21,6 +21,7 @@ #include <sal/config.h> +#include <cstddef> #include <memory> #include <o3tl/typed_flags_set.hxx> @@ -104,14 +105,14 @@ private: const SfxSlot* &pRealSlot, const SfxSlotServer**, SfxFoundCacheArr_Impl& ); - SAL_DLLPRIVATE sal_uInt16 GetSlotPos( sal_uInt16 nId, sal_uInt16 nStartSearchAt = 0 ); + SAL_DLLPRIVATE std::size_t GetSlotPos( sal_uInt16 nId, std::size_t nStartSearchAt = 0 ); SAL_DLLPRIVATE void Update_Impl( SfxStateCache* pCache ); SAL_DLLPRIVATE void UpdateControllers_Impl( const SfxInterface* pIF, const SfxFoundCache_Impl& rFound, const SfxPoolItem *pItem, SfxItemState eItemState ); - SAL_DLLPRIVATE SfxStateCache* GetStateCache( sal_uInt16 nId, sal_uInt16 *pPos); + SAL_DLLPRIVATE SfxStateCache* GetStateCache( sal_uInt16 nId, std::size_t * pPos); DECL_DLLPRIVATE_LINK( NextJob, Timer *, void ); SAL_DLLPRIVATE bool NextJob_Impl(Timer * pTimer); |