summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-08-04 09:34:01 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-08-04 09:36:26 +0100
commit9bfb43a942afd567cbb82edeba60c4cacc85c646 (patch)
tree35ec89548e7ccd49bd4d1bf8113b5182dac36056
parent9f985ac3db2c191fa521f833e011a9eda3ae708c (diff)
callcatcher: remove unused methods
-rw-r--r--editeng/inc/editeng/lcolitem.hxx1
-rw-r--r--editeng/inc/editeng/numitem.hxx1
-rw-r--r--editeng/source/items/numitem.cxx35
-rw-r--r--editeng/source/items/textitem.cxx7
-rw-r--r--svx/inc/svx/chrtitem.hxx1
-rw-r--r--svx/inc/svx/e3ditem.hxx1
-rw-r--r--svx/source/items/chrtitem.cxx8
-rw-r--r--svx/source/items/e3ditem.cxx12
8 files changed, 0 insertions, 66 deletions
diff --git a/editeng/inc/editeng/lcolitem.hxx b/editeng/inc/editeng/lcolitem.hxx
index 0108f35808..d5508cf385 100644
--- a/editeng/inc/editeng/lcolitem.hxx
+++ b/editeng/inc/editeng/lcolitem.hxx
@@ -45,7 +45,6 @@ public:
SvxLineColorItem( const sal_uInt16 nId );
SvxLineColorItem( const Color& aColor, const sal_uInt16 nId );
- SvxLineColorItem( SvStream& rStrm, const sal_uInt16 nId );
SvxLineColorItem( const SvxLineColorItem& rCopy );
~SvxLineColorItem();
diff --git a/editeng/inc/editeng/numitem.hxx b/editeng/inc/editeng/numitem.hxx
index 6ffa3c86ee..a779bf923f 100644
--- a/editeng/inc/editeng/numitem.hxx
+++ b/editeng/inc/editeng/numitem.hxx
@@ -267,7 +267,6 @@ public:
eDefaultNumberFormatPositionAndSpaceMode
= SvxNumberFormat::LABEL_WIDTH_AND_POSITION );
SvxNumRule(const SvxNumRule& rCopy);
- SvxNumRule(SvStream &rStream);
virtual ~SvxNumRule();
int operator==( const SvxNumRule& ) const;
diff --git a/editeng/source/items/numitem.cxx b/editeng/source/items/numitem.cxx
index f04b8eaa48..1a3ae47d36 100644
--- a/editeng/source/items/numitem.cxx
+++ b/editeng/source/items/numitem.cxx
@@ -744,41 +744,6 @@ SvxNumRule::SvxNumRule(const SvxNumRule& rCopy)
}
}
-SvxNumRule::SvxNumRule(SvStream &rStream)
-{
- ++nRefCount;
- LanguageType eLang = Application::GetSettings().GetLanguage();
- aLocale = SvxCreateLocale(eLang);
- sal_uInt16 nVersion;
- sal_uInt16 nTemp;
- rStream >> nVersion;
- rStream >> nLevelCount;
- rStream >> nTemp;
- nFeatureFlags = nTemp;
- rStream >> nTemp;
- bContinuousNumbering = (sal_Bool)nTemp;
- rStream >> nTemp;
- eNumberingType = (SvxNumRuleType)nTemp;
- memset( aFmts, 0, sizeof( aFmts ));
-
- for(sal_uInt16 i = 0; i < SVX_MAX_NUM; i++)
- {
- sal_uInt16 nSet;
- rStream >> nSet;
- if(nSet)
- aFmts[i] = new SvxNumberFormat(rStream);
- else
- aFmts[i] = 0;
- aFmtsSet[i] = aFmts[i] ? sal_True : sal_False;
- }
- if(NUMITEM_VERSION_02 <= nVersion)
- {
- sal_uInt16 nShort;
- rStream >> nShort;
- nFeatureFlags = nShort;
- }
-}
-
SvStream& SvxNumRule::Store(SvStream &rStream)
{
rStream<<(sal_uInt16)NUMITEM_VERSION_03;
diff --git a/editeng/source/items/textitem.cxx b/editeng/source/items/textitem.cxx
index 463aa93782..2f0da8ebed 100644
--- a/editeng/source/items/textitem.cxx
+++ b/editeng/source/items/textitem.cxx
@@ -2779,13 +2779,6 @@ SvxLineColorItem::SvxLineColorItem( const Color& rCol, const sal_uInt16 nId ) :
// -----------------------------------------------------------------------
-SvxLineColorItem::SvxLineColorItem( SvStream &rStrm, const sal_uInt16 nId ) :
- SvxColorItem( rStrm, nId )
-{
-}
-
-// -----------------------------------------------------------------------
-
SvxLineColorItem::SvxLineColorItem( const SvxLineColorItem &rCopy ) :
SvxColorItem( rCopy )
{
diff --git a/svx/inc/svx/chrtitem.hxx b/svx/inc/svx/chrtitem.hxx
index edbc1fadfd..60009d1722 100644
--- a/svx/inc/svx/chrtitem.hxx
+++ b/svx/inc/svx/chrtitem.hxx
@@ -319,7 +319,6 @@ class SVX_DLLPUBLIC SvxDoubleItem : public SfxPoolItem
public:
TYPEINFO();
SvxDoubleItem(double fValue /*= 0.0*/, sal_uInt16 nId );
- SvxDoubleItem(SvStream& rIn, sal_uInt16 nId );
SvxDoubleItem(const SvxDoubleItem& rItem);
virtual bool QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const;
diff --git a/svx/inc/svx/e3ditem.hxx b/svx/inc/svx/e3ditem.hxx
index 42926ddab9..5558534e68 100644
--- a/svx/inc/svx/e3ditem.hxx
+++ b/svx/inc/svx/e3ditem.hxx
@@ -46,7 +46,6 @@ public:
TYPEINFO();
SvxB3DVectorItem();
SvxB3DVectorItem( sal_uInt16 nWhich, const basegfx::B3DVector& rVal );
- SvxB3DVectorItem( sal_uInt16 nWhich, SvStream & );
SvxB3DVectorItem( const SvxB3DVectorItem& );
~SvxB3DVectorItem();
diff --git a/svx/source/items/chrtitem.cxx b/svx/source/items/chrtitem.cxx
index e6bba7d2c0..514cee5d50 100644
--- a/svx/source/items/chrtitem.cxx
+++ b/svx/source/items/chrtitem.cxx
@@ -264,14 +264,6 @@ SvxDoubleItem::SvxDoubleItem(double fValue, sal_uInt16 nId) :
// -----------------------------------------------------------------------
-SvxDoubleItem::SvxDoubleItem(SvStream& rIn, sal_uInt16 nId) :
- SfxPoolItem(nId)
-{
- rIn >> fVal;
-}
-
-// -----------------------------------------------------------------------
-
SvxDoubleItem::SvxDoubleItem(const SvxDoubleItem& rItem) :
SfxPoolItem(rItem),
fVal(rItem.fVal)
diff --git a/svx/source/items/e3ditem.cxx b/svx/source/items/e3ditem.cxx
index 80acfbec84..466b07fa72 100644
--- a/svx/source/items/e3ditem.cxx
+++ b/svx/source/items/e3ditem.cxx
@@ -68,18 +68,6 @@ SvxB3DVectorItem::SvxB3DVectorItem( sal_uInt16 _nWhich, const basegfx::B3DVector
// -----------------------------------------------------------------------
-SvxB3DVectorItem::SvxB3DVectorItem( sal_uInt16 _nWhich, SvStream& rStream ) :
- SfxPoolItem( _nWhich )
-{
- DBG_CTOR(SvxB3DVectorItem, 0);
- double fValue;
- rStream >> fValue; aVal.setX(fValue);
- rStream >> fValue; aVal.setY(fValue);
- rStream >> fValue; aVal.setZ(fValue);
-}
-
-// -----------------------------------------------------------------------
-
SvxB3DVectorItem::SvxB3DVectorItem( const SvxB3DVectorItem& rItem ) :
SfxPoolItem( rItem ),
aVal( rItem.aVal )