diff options
Diffstat (limited to 'svl')
-rw-r--r-- | svl/inc/svl/aeitem.hxx | 2 | ||||
-rw-r--r-- | svl/source/items/aeitem.cxx | 21 |
2 files changed, 0 insertions, 23 deletions
diff --git a/svl/inc/svl/aeitem.hxx b/svl/inc/svl/aeitem.hxx index edb98f3db0d5..787811219ee8 100644 --- a/svl/inc/svl/aeitem.hxx +++ b/svl/inc/svl/aeitem.hxx @@ -48,7 +48,6 @@ public: SfxAllEnumItem(); SfxAllEnumItem( sal_uInt16 nWhich); SfxAllEnumItem( sal_uInt16 nWhich, sal_uInt16 nVal ); - SfxAllEnumItem( sal_uInt16 nWhich, sal_uInt16 nVal, const XubString &rText ); SfxAllEnumItem( sal_uInt16 nWhich, SvStream &rStream ); SfxAllEnumItem( const SfxAllEnumItem & ); ~SfxAllEnumItem(); @@ -56,7 +55,6 @@ public: void InsertValue( sal_uInt16 nValue ); void InsertValue( sal_uInt16 nValue, const XubString &rText ); void RemoveValue( sal_uInt16 nValue ); - void RemoveAllValues(); sal_uInt16 GetPosByValue( sal_uInt16 nValue ) const; diff --git a/svl/source/items/aeitem.cxx b/svl/source/items/aeitem.cxx index e81c67d2d041..4b10e716e569 100644 --- a/svl/source/items/aeitem.cxx +++ b/svl/source/items/aeitem.cxx @@ -60,15 +60,6 @@ SfxAllEnumItem::SfxAllEnumItem() : { } -SfxAllEnumItem::SfxAllEnumItem( sal_uInt16 which, sal_uInt16 nVal, const XubString &rText ): - SfxEnumItem(which, nVal), - pValues( 0 ), - pDisabledValues( 0 ) -{ - DBG_CTOR(SfxAllEnumItem, 0); - InsertValue( nVal, rText ); -} - // ----------------------------------------------------------------------- SfxAllEnumItem::SfxAllEnumItem(sal_uInt16 which, sal_uInt16 nVal): @@ -292,16 +283,4 @@ void SfxAllEnumItem::RemoveValue( sal_uInt16 nValue ) pValues->Remove( nPos ); } -// ----------------------------------------------------------------------- - - -void SfxAllEnumItem::RemoveAllValues() -{ - DBG_CHKTHIS(SfxAllEnumItem, 0); - if ( pValues ) - pValues->DeleteAndDestroy( 0, pValues->Count() ); -} - - - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |