summaryrefslogtreecommitdiff
path: root/svx
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
commit0a3c6b958f6fc184d3f3783ba6511de864a7b8ff (patch)
treea6b5c97bb6ff1b7fb4d03cd1501b038d3fdc6d06 /svx
parentc9fa7eef2f42f4c16dafe25c379d71c1d65a451e (diff)
callcatcher: remove unused methods
Diffstat (limited to 'svx')
-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
4 files changed, 0 insertions, 22 deletions
diff --git a/svx/inc/svx/chrtitem.hxx b/svx/inc/svx/chrtitem.hxx
index 71bf1dfeda90..194d43133931 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 c2a37462696a..cb5c48c70afc 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 5c0203e1674d..21ccb185903e 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 3245b1fed799..8be190f33f89 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 )