diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-08-06 12:15:38 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-08-06 12:15:38 +0200 |
commit | 3efa3ad7b6de78c291f49858e50e6bedbd6a2173 (patch) | |
tree | f409d05b6ff550caa497401464f8c76e1dc63b26 /include/svx | |
parent | 1f23cc159de5e8584b9354a42d431356530d1ce0 (diff) |
SdrEdgreLine*DeltaItem::Put/QueryValue are same as underlying
...CntInt32Item::Put/QueryValue
Change-Id: I21602be0f4ba9d9e34a379a86d524b05976b0c8f
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/sxelditm.hxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/svx/sxelditm.hxx b/include/svx/sxelditm.hxx index 570935012124..b3491d18d63a 100644 --- a/include/svx/sxelditm.hxx +++ b/include/svx/sxelditm.hxx @@ -34,24 +34,18 @@ public: SdrEdgeLine1DeltaItem(long nVal=0): SdrMetricItem(SDRATTR_EDGELINE1DELTA,nVal) {} SdrEdgeLine1DeltaItem(SvStream& rIn): SdrMetricItem(SDRATTR_EDGELINE1DELTA,rIn) {} virtual SfxPoolItem * Clone(SfxItemPool *) const SAL_OVERRIDE; - virtual bool QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const SAL_OVERRIDE; - virtual bool PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) SAL_OVERRIDE; }; class SVX_DLLPUBLIC SdrEdgeLine2DeltaItem: public SdrMetricItem { public: SdrEdgeLine2DeltaItem(long nVal=0): SdrMetricItem(SDRATTR_EDGELINE2DELTA,nVal) {} SdrEdgeLine2DeltaItem(SvStream& rIn): SdrMetricItem(SDRATTR_EDGELINE2DELTA,rIn) {} - virtual bool QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const SAL_OVERRIDE; - virtual bool PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) SAL_OVERRIDE; }; class SVX_DLLPUBLIC SdrEdgeLine3DeltaItem: public SdrMetricItem { public: SdrEdgeLine3DeltaItem(long nVal=0): SdrMetricItem(SDRATTR_EDGELINE3DELTA,nVal) {} SdrEdgeLine3DeltaItem(SvStream& rIn): SdrMetricItem(SDRATTR_EDGELINE3DELTA,rIn) {} - virtual bool QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const SAL_OVERRIDE; - virtual bool PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) SAL_OVERRIDE; }; #endif |