diff options
author | Noel Grandin <noel@peralex.com> | 2016-05-18 16:57:21 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-05-19 06:42:34 +0000 |
commit | b73f45ef0bf3230275c11fc9c70c22625332b695 (patch) | |
tree | c7cf36e27467ffe32d13a0183f5e15c72586c168 /sd/inc/sdattr.hxx | |
parent | 727d4dbebaf947593ce5caae6915238c8c4f3da2 (diff) |
loplugin:unusedmethods in sd
Change-Id: I27da3e7afd86217ec9f75958775da9c144d7a0a5
Reviewed-on: https://gerrit.libreoffice.org/25111
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sd/inc/sdattr.hxx')
-rw-r--r-- | sd/inc/sdattr.hxx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/sd/inc/sdattr.hxx b/sd/inc/sdattr.hxx index 603e322ea416..710a072e6b5d 100644 --- a/sd/inc/sdattr.hxx +++ b/sd/inc/sdattr.hxx @@ -35,8 +35,6 @@ class SdAttrLayerName : public SfxStringItem { public: - SdAttrLayerName() : - SfxStringItem( ATTR_LAYER_NAME, OUString("neue Ebene") ) {} SdAttrLayerName( const OUString& aStr ) : SfxStringItem( ATTR_LAYER_NAME, aStr ) {} }; @@ -86,7 +84,6 @@ public: class DiaEffectItem : public SfxEnumItem { public: - DiaEffectItem( css::presentation::FadeEffect eFade = css::presentation::FadeEffect_NONE ); DiaEffectItem( SvStream& rIn ); virtual SfxPoolItem* Clone( SfxItemPool* pPool = nullptr ) const override; @@ -97,7 +94,6 @@ public: class DiaSpeedItem : public SfxEnumItem { public: - DiaSpeedItem( FadeSpeed = FADE_SPEED_MEDIUM ); DiaSpeedItem( SvStream& rIn ); virtual SfxPoolItem* Clone( SfxItemPool* pPool = nullptr ) const override; @@ -108,7 +104,6 @@ public: class DiaAutoItem : public SfxEnumItem { public: - DiaAutoItem( PresChange = PRESCHANGE_MANUAL ); DiaAutoItem( SvStream& rIn ); virtual SfxPoolItem* Clone( SfxItemPool* pPool = nullptr ) const override; @@ -116,15 +111,6 @@ public: sal_uInt16 GetValueCount() const override { return PRESCHANGE_COUNT; } }; -class DiaTimeItem : public SfxUInt32Item -{ -public: - DiaTimeItem( sal_uInt32 nValue = 0L ); - - virtual SfxPoolItem* Clone( SfxItemPool* pPool = nullptr ) const override; - virtual bool operator==( const SfxPoolItem& ) const override; -}; - #endif // INCLUDED_SD_INC_SDATTR_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |