summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-03-09 15:11:52 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-03-09 15:12:48 +0100
commitfee2de9cb1f4763a0e4f7e0e3bae6858c3d458b4 (patch)
treea53d0c2a240303f162aa51a21f8149d289604db3 /include
parentmpScanBuf can be private (diff)
downloadcore-fee2de9cb1f4763a0e4f7e0e3bae6858c3d458b4.tar.gz
core-fee2de9cb1f4763a0e4f7e0e3bae6858c3d458b4.zip
Clean up uses of integer types
Change-Id: If022ca9de8db49b885065c32b4f6f89debae1392
Diffstat (limited to 'include')
-rw-r--r--include/sfx2/bindings.hxx5
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);