From 6b58caf0597fed21c78fd806e5f2cef6fc43c502 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 3 Mar 2017 14:24:26 +0200 Subject: Dia*Item classes are unused Change-Id: I0546a15300312c19feaf701057ab0191547b9202 Reviewed-on: https://gerrit.libreoffice.org/34858 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sd/source/core/sdattr.cxx | 67 ----------------------------------------------- 1 file changed, 67 deletions(-) (limited to 'sd/source') diff --git a/sd/source/core/sdattr.cxx b/sd/source/core/sdattr.cxx index 8a6a385d62cd..52597c57ca92 100644 --- a/sd/source/core/sdattr.cxx +++ b/sd/source/core/sdattr.cxx @@ -17,71 +17,4 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include "sdattr.hxx" - -using namespace ::com::sun::star; - -/************************************************************************* -|* -|* DiaEffectItem -|* -*************************************************************************/ - -DiaEffectItem::DiaEffectItem( SvStream& rIn ) : - SfxEnumItem( ATTR_DIA_EFFECT, rIn ) -{ -} - -SfxPoolItem* DiaEffectItem::Clone( SfxItemPool* ) const -{ - return new DiaEffectItem( *this ); -} - -SfxPoolItem* DiaEffectItem::Create( SvStream& rIn, sal_uInt16 ) const -{ - return new DiaEffectItem( rIn ); -} - -/************************************************************************* -|* -|* DiaSpeedItem -|* -*************************************************************************/ - -DiaSpeedItem::DiaSpeedItem( SvStream& rIn ) : - SfxEnumItem( ATTR_DIA_SPEED, rIn ) -{ -} - -SfxPoolItem* DiaSpeedItem::Clone( SfxItemPool* ) const -{ - return new DiaSpeedItem( *this ); -} - -SfxPoolItem* DiaSpeedItem::Create( SvStream& rIn, sal_uInt16 ) const -{ - return new DiaSpeedItem( rIn ); -} - -/************************************************************************* -|* -|* DiaAutoItem -|* -*************************************************************************/ - -DiaAutoItem::DiaAutoItem( SvStream& rIn ) : - SfxEnumItem( ATTR_DIA_AUTO, rIn ) -{ -} - -SfxPoolItem* DiaAutoItem::Clone( SfxItemPool* ) const -{ - return new DiaAutoItem( *this ); -} - -SfxPoolItem* DiaAutoItem::Create( SvStream& rIn, sal_uInt16 ) const -{ - return new DiaAutoItem( rIn ); -} - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit