summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-08-20 21:57:36 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-08-22 09:39:15 +0100
commitaf6752b88e34df05449a4237d9be0fac509c227c (patch)
tree39eb9c3f30cfa12bba0546db5d643512323c9084 /svl
parentb2d7ede98716806cc4b3ea8547247175d5f04d18 (diff)
callcatcher: remove unused methods
Diffstat (limited to 'svl')
-rw-r--r--svl/inc/svl/aeitem.hxx2
-rw-r--r--svl/source/items/aeitem.cxx21
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: */