From bb8ea3fc5f69522073a490782e99c81aed96d02f Mon Sep 17 00:00:00 2001 From: Nigel Hawkins Date: Tue, 9 Aug 2011 15:23:32 +0100 Subject: Replace SvUShorts with vector in aeitem.[ch]xx LGPLv3+/MPL1.1 --- svl/inc/svl/aeitem.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'svl/inc') 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 #include +#include class SfxAllEnumValueArr; -class SvUShorts; class SVL_DLLPUBLIC SfxAllEnumItem: public SfxEnumItem { - SfxAllEnumValueArr* pValues; - SvUShorts* pDisabledValues; + SfxAllEnumValueArr* pValues; + std::vector* pDisabledValues; protected: sal_uInt16 _GetPosByValue( sal_uInt16 nValue ) const; -- cgit