diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-04 09:34:01 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-04 09:36:26 +0100 |
commit | 0a3c6b958f6fc184d3f3783ba6511de864a7b8ff (patch) | |
tree | a6b5c97bb6ff1b7fb4d03cd1501b038d3fdc6d06 /editeng | |
parent | c9fa7eef2f42f4c16dafe25c379d71c1d65a451e (diff) |
callcatcher: remove unused methods
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/inc/editeng/lcolitem.hxx | 1 | ||||
-rw-r--r-- | editeng/inc/editeng/numitem.hxx | 1 | ||||
-rw-r--r-- | editeng/source/items/numitem.cxx | 35 | ||||
-rw-r--r-- | editeng/source/items/textitem.cxx | 7 |
4 files changed, 0 insertions, 44 deletions
diff --git a/editeng/inc/editeng/lcolitem.hxx b/editeng/inc/editeng/lcolitem.hxx index 996c282050a0..f8561b93d184 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 32d771cf00ac..a8730f46b378 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 dc272096cbd1..afaebcfb4a00 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 f4f03f739130..e8a77cbb0336 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 ) { |