diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-07 01:52:30 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-08 13:04:47 +0100 |
commit | dd853ad626ddaff20a2d418f99279aa931b90c97 (patch) | |
tree | ab767f62caa84d5b73eb2bade15b95680eb06634 /svl | |
parent | 5c8a542270ec4e28771baf6b1fe38e5f097d5082 (diff) |
callcatcher: unused methods
Diffstat (limited to 'svl')
-rw-r--r-- | svl/inc/svl/ctypeitm.hxx | 2 | ||||
-rw-r--r-- | svl/source/items/ctypeitm.cxx | 14 |
2 files changed, 0 insertions, 16 deletions
diff --git a/svl/inc/svl/ctypeitm.hxx b/svl/inc/svl/ctypeitm.hxx index 82f0bd1179c4..d4c91a134501 100644 --- a/svl/inc/svl/ctypeitm.hxx +++ b/svl/inc/svl/ctypeitm.hxx @@ -44,7 +44,6 @@ public: CntContentTypeItem(); CntContentTypeItem( sal_uInt16 nWhich, const XubString& rType ); - CntContentTypeItem( sal_uInt16 nWhich, const INetContentType eType ); CntContentTypeItem( const CntContentTypeItem& rOrig ); virtual SfxPoolItem* Create( SvStream& rStream, @@ -58,7 +57,6 @@ public: virtual SfxPoolItem* Clone( SfxItemPool *pPool = NULL ) const; void SetValue( const XubString& rNewVal ); - void SetPresentation( const XubString& rNewVal ); using SfxPoolItem::Compare; virtual int Compare( const SfxPoolItem &rWith, const IntlWrapper& rIntlWrapper ) const; diff --git a/svl/source/items/ctypeitm.cxx b/svl/source/items/ctypeitm.cxx index d1fe8b9461f9..dafba900cad2 100644 --- a/svl/source/items/ctypeitm.cxx +++ b/svl/source/items/ctypeitm.cxx @@ -64,14 +64,6 @@ CntContentTypeItem::CntContentTypeItem( sal_uInt16 which, const XubString& rType } //---------------------------------------------------------------------------- -CntContentTypeItem::CntContentTypeItem( sal_uInt16 which, - const INetContentType eType ) -: CntUnencodedStringItem( which, INetContentTypes::GetContentType( eType ) ), - _eType( eType ) -{ -} - -//---------------------------------------------------------------------------- CntContentTypeItem::CntContentTypeItem( const CntContentTypeItem& rOrig ) : CntUnencodedStringItem( rOrig ), _eType( rOrig._eType ), @@ -152,12 +144,6 @@ void CntContentTypeItem::SetValue( const XubString& rNewVal ) } //---------------------------------------------------------------------------- -void CntContentTypeItem::SetPresentation( const XubString& rNewVal ) -{ - _aPresentation = rNewVal; -} - -//---------------------------------------------------------------------------- int CntContentTypeItem::Compare( const SfxPoolItem &rWith, const IntlWrapper& rIntlWrapper ) const { String aOwnText, aWithText; |