summaryrefslogtreecommitdiff
path: root/svl/inc
diff options
context:
space:
mode:
authorNigel Hawkins <n.hawkins@gmx.com>2011-08-09 15:23:32 +0100
committerNigel Hawkins <n.hawkins@gmx.com>2011-08-09 15:23:32 +0100
commitbb8ea3fc5f69522073a490782e99c81aed96d02f (patch)
tree05dea5b84a7536992b95cd0608da6f85f3baa31b /svl/inc
parent79f5abe3fde96a5537f0d80e0919c80d241f63a8 (diff)
Replace SvUShorts with vector in aeitem.[ch]xx
LGPLv3+/MPL1.1
Diffstat (limited to 'svl/inc')
-rw-r--r--svl/inc/svl/aeitem.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svl/inc/svl/aeitem.hxx b/svl/inc/svl/aeitem.hxx
index 47c437f8a177..edb98f3db0d5 100644
--- a/svl/inc/svl/aeitem.hxx
+++ b/svl/inc/svl/aeitem.hxx
@@ -31,14 +31,14 @@
#include "svl/svldllapi.h"
#include <svl/poolitem.hxx>
#include <svl/eitem.hxx>
+#include <vector>
class SfxAllEnumValueArr;
-class SvUShorts;
class SVL_DLLPUBLIC SfxAllEnumItem: public SfxEnumItem
{
- SfxAllEnumValueArr* pValues;
- SvUShorts* pDisabledValues;
+ SfxAllEnumValueArr* pValues;
+ std::vector<sal_uInt16>* pDisabledValues;
protected:
sal_uInt16 _GetPosByValue( sal_uInt16 nValue ) const;