diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-03-09 17:08:14 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-03-09 17:08:14 +0100 |
commit | 82e92bb15d26fff2d07736e2a6193cac1915b44d (patch) | |
tree | 7907e78e58fe067832df8deac73fa53758c360dc /include | |
parent | ff8f6629287d0d1bdbcf4f8ed16cb8d077d08c7a (diff) |
Clean up uses of integer types
Change-Id: I1155dfe3e2bcfe2c15c101c7373fcc9e161aa366
Diffstat (limited to 'include')
-rw-r--r-- | include/svl/aeitem.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/svl/aeitem.hxx b/include/svl/aeitem.hxx index d203e2383f12..c004e489b5a8 100644 --- a/include/svl/aeitem.hxx +++ b/include/svl/aeitem.hxx @@ -22,6 +22,8 @@ #include <svl/svldllapi.h> #include <svl/poolitem.hxx> #include <svl/eitem.hxx> + +#include <cstddef> #include <vector> class SfxAllEnumValueArr; @@ -44,7 +46,7 @@ class SVL_DLLPUBLIC SfxAllEnumItem: public SfxAllEnumItem_Base std::vector<sal_uInt16>* pDisabledValues; sal_uInt16 GetPosByValue( sal_uInt16 nValue ) const; - sal_uInt16 GetPosByValue_( sal_uInt16 nValue ) const; + std::size_t GetPosByValue_( sal_uInt16 nValue ) const; public: static SfxPoolItem* CreateDefault(); |