summaryrefslogtreecommitdiff
path: root/svl/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-08-24 22:31:19 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-08-25 09:42:06 +0100
commitac1530a37e4544378c22c9358e57ca8a596c1aa8 (patch)
treeb9380514932038897631b6e9f7e509c4fc7f8129 /svl/source
parent798496c5be43771ee478a0ee4288188b28583a8d (diff)
callcatcher: yet more unused code
Diffstat (limited to 'svl/source')
-rw-r--r--svl/source/items/rectitem.cxx9
-rw-r--r--svl/source/items/slstitm.cxx9
-rw-r--r--svl/source/items/style.cxx8
-rw-r--r--svl/source/items/szitem.cxx9
4 files changed, 0 insertions, 35 deletions
diff --git a/svl/source/items/rectitem.cxx b/svl/source/items/rectitem.cxx
index ddf19201e63b..2b782d40a5d4 100644
--- a/svl/source/items/rectitem.cxx
+++ b/svl/source/items/rectitem.cxx
@@ -64,15 +64,6 @@ SfxRectangleItem::SfxRectangleItem( sal_uInt16 nW, const Rectangle& rVal ) :
// -----------------------------------------------------------------------
-SfxRectangleItem::SfxRectangleItem( sal_uInt16 nW, SvStream &rStream ) :
- SfxPoolItem( nW )
-{
- DBG_CTOR(SfxRectangleItem, 0);
- rStream >> aVal;
-}
-
-// -----------------------------------------------------------------------
-
SfxRectangleItem::SfxRectangleItem( const SfxRectangleItem& rItem ) :
SfxPoolItem( rItem ),
aVal( rItem.aVal )
diff --git a/svl/source/items/slstitm.cxx b/svl/source/items/slstitm.cxx
index 74239d48546e..ffaaf8390d6a 100644
--- a/svl/source/items/slstitm.cxx
+++ b/svl/source/items/slstitm.cxx
@@ -332,15 +332,6 @@ int SfxStringListItem::IsPoolable() const
#endif
-//------------------------------------------------------------------------
-
-void SfxStringListItem::Sort( sal_Bool bAscending)
-{
- DBG_ASSERT(GetRefCount()==0,"Sort:RefCount!=0");
- if( pImp )
- pImp->Sort( bAscending);
-}
-
//----------------------------------------------------------------------------
void SfxStringListItem::SetStringList( const com::sun::star::uno::Sequence< rtl::OUString >& rList )
{
diff --git a/svl/source/items/style.cxx b/svl/source/items/style.cxx
index 1250451a2db1..1830f25a2f5a 100644
--- a/svl/source/items/style.cxx
+++ b/svl/source/items/style.cxx
@@ -83,14 +83,6 @@ TYPEINIT1(SfxStyleSheetPoolHint, SfxHint);
SfxStyleSheetHintExtended::SfxStyleSheetHintExtended
(
sal_uInt16 nAction, // SFX_STYLESHEET_... (s.o.)
- const String& rOldName
-)
-: SfxStyleSheetHint( nAction ),
- aName( rOldName )
-{}
-SfxStyleSheetHintExtended::SfxStyleSheetHintExtended
-(
- sal_uInt16 nAction, // SFX_STYLESHEET_... (s.o.)
const String& rOldName,
SfxStyleSheetBase& rStyleSheet // geh"ort weiterhin dem Aufrufer
)
diff --git a/svl/source/items/szitem.cxx b/svl/source/items/szitem.cxx
index 4bb7238c9b76..720db8f911e2 100644
--- a/svl/source/items/szitem.cxx
+++ b/svl/source/items/szitem.cxx
@@ -64,15 +64,6 @@ SfxSizeItem::SfxSizeItem( sal_uInt16 nW, const Size& rVal ) :
// -----------------------------------------------------------------------
-SfxSizeItem::SfxSizeItem( sal_uInt16 nW, SvStream &rStream ) :
- SfxPoolItem( nW )
-{
- DBG_CTOR(SfxSizeItem, 0);
- rStream >> aVal;
-}
-
-// -----------------------------------------------------------------------
-
SfxSizeItem::SfxSizeItem( const SfxSizeItem& rItem ) :
SfxPoolItem( rItem ),
aVal( rItem.aVal )