summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-08-29 22:26:07 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-08-30 09:32:23 +0100
commit8fd3e7c09177a856fb9ba6de0e42af5d12b67652 (patch)
treee412320d2d96d2f1d19b7ecf06c6917bdabbb1b7 /svx
parent2f5856b20d4dc8e9092052b376455d950c968a12 (diff)
callcatcher: chop, hack, slay
Diffstat (limited to 'svx')
-rw-r--r--svx/inc/svx/xbtmpit.hxx2
-rw-r--r--svx/inc/svx/xflftrit.hxx2
-rw-r--r--svx/inc/svx/xflhtit.hxx2
-rw-r--r--svx/inc/svx/xftshcit.hxx1
-rw-r--r--svx/inc/svx/xlndsit.hxx2
-rw-r--r--svx/inc/svx/xlnedit.hxx1
-rw-r--r--svx/inc/svx/xlnstit.hxx1
-rw-r--r--svx/inc/svx/xtable.hxx1
-rw-r--r--svx/source/xoutdev/xattr.cxx91
-rw-r--r--svx/source/xoutdev/xattrbmp.cxx21
-rw-r--r--svx/source/xoutdev/xtabbtmp.cxx7
11 files changed, 0 insertions, 131 deletions
diff --git a/svx/inc/svx/xbtmpit.hxx b/svx/inc/svx/xbtmpit.hxx
index 8dc6f98b06a6..d9fd096a2da3 100644
--- a/svx/inc/svx/xbtmpit.hxx
+++ b/svx/inc/svx/xbtmpit.hxx
@@ -46,10 +46,8 @@ class SVX_DLLPUBLIC XFillBitmapItem : public NameOrIndex
public:
TYPEINFO();
XFillBitmapItem() : NameOrIndex(XATTR_FILLBITMAP, -1 ) {}
- XFillBitmapItem( long nIndex, const XOBitmap& rTheBitmap );
XFillBitmapItem( const String& rName, const XOBitmap& rTheBitmap );
XFillBitmapItem( SfxItemPool* pPool, const XOBitmap& rTheBitmap );
- XFillBitmapItem( SfxItemPool* pPool );
XFillBitmapItem( const XFillBitmapItem& rItem );
XFillBitmapItem( SvStream& rIn, sal_uInt16 nVer = 0 );
diff --git a/svx/inc/svx/xflftrit.hxx b/svx/inc/svx/xflftrit.hxx
index 275810bdda02..1c90b8e27e55 100644
--- a/svx/inc/svx/xflftrit.hxx
+++ b/svx/inc/svx/xflftrit.hxx
@@ -48,10 +48,8 @@ public:
TYPEINFO();
XFillFloatTransparenceItem();
- XFillFloatTransparenceItem( sal_Int32 nIndex, const XGradient& rGradient, sal_Bool bEnable = sal_True );
XFillFloatTransparenceItem(const String& rName, const XGradient& rGradient, sal_Bool bEnable = sal_True );
XFillFloatTransparenceItem(SfxItemPool* pPool, const XGradient& rTheGradient, sal_Bool bEnable = sal_True );
- XFillFloatTransparenceItem(SfxItemPool* pPool );
XFillFloatTransparenceItem( const XFillFloatTransparenceItem& rItem );
virtual int operator==( const SfxPoolItem& rItem ) const;
diff --git a/svx/inc/svx/xflhtit.hxx b/svx/inc/svx/xflhtit.hxx
index 65eed6d9b17f..a7a126d67f16 100644
--- a/svx/inc/svx/xflhtit.hxx
+++ b/svx/inc/svx/xflhtit.hxx
@@ -45,10 +45,8 @@ class SVX_DLLPUBLIC XFillHatchItem : public NameOrIndex
public:
TYPEINFO();
XFillHatchItem() : NameOrIndex(XATTR_FILLHATCH, -1) {}
- XFillHatchItem(sal_Int32 nIndex, const XHatch& rTheHatch);
XFillHatchItem(const String& rName, const XHatch& rTheHatch);
XFillHatchItem(SfxItemPool* pPool, const XHatch& rTheHatch);
- XFillHatchItem(SfxItemPool* pPool );
XFillHatchItem(const XFillHatchItem& rItem);
XFillHatchItem(SvStream& rIn);
diff --git a/svx/inc/svx/xftshcit.hxx b/svx/inc/svx/xftshcit.hxx
index ddd1aefa8f99..4c9cdd92baed 100644
--- a/svx/inc/svx/xftshcit.hxx
+++ b/svx/inc/svx/xftshcit.hxx
@@ -43,7 +43,6 @@ class SVX_DLLPUBLIC XFormTextShadowColorItem : public XColorItem
public:
TYPEINFO();
XFormTextShadowColorItem() {}
- XFormTextShadowColorItem(sal_Int32 nIndex, const Color& rTheColor);
XFormTextShadowColorItem(const String& rName, const Color& rTheColor);
XFormTextShadowColorItem(SvStream& rIn);
diff --git a/svx/inc/svx/xlndsit.hxx b/svx/inc/svx/xlndsit.hxx
index 4f61e371cd4b..ac8a18764295 100644
--- a/svx/inc/svx/xlndsit.hxx
+++ b/svx/inc/svx/xlndsit.hxx
@@ -46,10 +46,8 @@ class SVX_DLLPUBLIC XLineDashItem : public NameOrIndex
public:
TYPEINFO();
XLineDashItem() : NameOrIndex(XATTR_LINEDASH, -1) {}
- XLineDashItem(sal_Int32 nIndex, const XDash& rTheDash);
XLineDashItem(const String& rName, const XDash& rTheDash);
XLineDashItem(SfxItemPool* pPool, const XDash& rTheDash);
- XLineDashItem(SfxItemPool* pPool );
XLineDashItem(const XLineDashItem& rItem);
XLineDashItem(SvStream& rIn);
diff --git a/svx/inc/svx/xlnedit.hxx b/svx/inc/svx/xlnedit.hxx
index 7d7082b0d047..461d805308bf 100644
--- a/svx/inc/svx/xlnedit.hxx
+++ b/svx/inc/svx/xlnedit.hxx
@@ -47,7 +47,6 @@ public:
XLineEndItem(sal_Int32 nIndex = -1);
XLineEndItem(const String& rName, const basegfx::B2DPolyPolygon& rPolyPolygon);
XLineEndItem(SfxItemPool* pPool, const basegfx::B2DPolyPolygon& rPolyPolygon);
- XLineEndItem(SfxItemPool* pPool );
XLineEndItem(const XLineEndItem& rItem);
XLineEndItem(SvStream& rIn);
diff --git a/svx/inc/svx/xlnstit.hxx b/svx/inc/svx/xlnstit.hxx
index ad71ea90ab6f..24fce63c9911 100644
--- a/svx/inc/svx/xlnstit.hxx
+++ b/svx/inc/svx/xlnstit.hxx
@@ -47,7 +47,6 @@ public:
XLineStartItem(sal_Int32 nIndex = -1);
XLineStartItem(const String& rName, const basegfx::B2DPolyPolygon& rPolyPolygon);
XLineStartItem(SfxItemPool* pPool, const basegfx::B2DPolyPolygon& rPolyPolygon);
- XLineStartItem(SfxItemPool* pPool );
XLineStartItem(const XLineStartItem& rItem);
XLineStartItem(SvStream& rIn);
diff --git a/svx/inc/svx/xtable.hxx b/svx/inc/svx/xtable.hxx
index 8635bff1b7d7..c856f47993a0 100644
--- a/svx/inc/svx/xtable.hxx
+++ b/svx/inc/svx/xtable.hxx
@@ -423,7 +423,6 @@ public:
virtual ~XBitmapList();
using XPropertyList::Replace;
- XBitmapEntry* Replace(XBitmapEntry* pEntry, long nIndex );
using XPropertyList::Remove;
XBitmapEntry* Remove(long nIndex);
using XPropertyList::Get;
diff --git a/svx/source/xoutdev/xattr.cxx b/svx/source/xoutdev/xattr.cxx
index 49a64224419a..abc3356d90fa 100644
--- a/svx/source/xoutdev/xattr.cxx
+++ b/svx/source/xoutdev/xattr.cxx
@@ -828,18 +828,6 @@ TYPEINIT1_AUTOFACTORY(XLineDashItem, NameOrIndex);
/*************************************************************************
|*
-|* XLineDashItem::XLineDashItem(sal_Int32 nIndex, const XDash& rTheDash)
-|*
-*************************************************************************/
-
-XLineDashItem::XLineDashItem(sal_Int32 nIndex, const XDash& rTheDash) :
- NameOrIndex(XATTR_LINEDASH, nIndex),
- aDash(rTheDash)
-{
-}
-
-/*************************************************************************
-|*
|* XLineDashItem::XLineDashItem(const String& rName, const XDash& rTheDash)
|*
*************************************************************************/
@@ -894,13 +882,6 @@ XLineDashItem::XLineDashItem(SfxItemPool* /*pPool*/, const XDash& rTheDash)
{
}
-//*************************************************************************
-
-XLineDashItem::XLineDashItem(SfxItemPool* /*pPool*/)
-: NameOrIndex(XATTR_LINEDASH, -1 )
-{
-}
-
/*************************************************************************
|*
|* XLineDashItem::Clone(SfxItemPool* pPool) const
@@ -1646,13 +1627,6 @@ XLineStartItem::XLineStartItem(SfxItemPool* /*pPool*/, const basegfx::B2DPolyPol
{
}
-//*************************************************************************
-
-XLineStartItem::XLineStartItem(SfxItemPool* /*pPool*/)
-: NameOrIndex(XATTR_LINESTART, -1 )
-{
-}
-
/*************************************************************************
|*
|* XLineStartItem::Clone(SfxItemPool* pPool) const
@@ -2078,13 +2052,6 @@ XLineEndItem::XLineEndItem(SfxItemPool* /*pPool*/, const basegfx::B2DPolyPolygon
{
}
-//*************************************************************************
-
-XLineEndItem::XLineEndItem(SfxItemPool* /*pPool*/)
-: NameOrIndex(XATTR_LINEEND, -1 )
-{
-}
-
/*************************************************************************
|*
|* XLineEndItem::Clone(SfxItemPool* pPool) const
@@ -3673,15 +3640,6 @@ XFillFloatTransparenceItem::XFillFloatTransparenceItem() :
//------------------------------------------------------------------------
-XFillFloatTransparenceItem::XFillFloatTransparenceItem( sal_Int32 nIndex, const XGradient& rGradient, sal_Bool bEnable ) :
- XFillGradientItem ( nIndex, rGradient ),
- bEnabled ( bEnable )
-{
- SetWhich( XATTR_FILLFLOATTRANSPARENCE );
-}
-
-//------------------------------------------------------------------------
-
XFillFloatTransparenceItem::XFillFloatTransparenceItem(const XubString& rName, const XGradient& rGradient, sal_Bool bEnable ) :
XFillGradientItem ( rName, rGradient ),
bEnabled ( bEnable )
@@ -3698,15 +3656,6 @@ XFillFloatTransparenceItem::XFillFloatTransparenceItem( const XFillFloatTranspar
SetWhich( XATTR_FILLFLOATTRANSPARENCE );
}
-//------------------------------------------------------------------------
-
-//XFillFloatTransparenceItem::XFillFloatTransparenceItem( SvStream& rIn, sal_uInt16 nVer ) :
-// XFillGradientItem ( rIn, nVer )
-//{
-// SetWhich( XATTR_FILLFLOATTRANSPARENCE );
-// rIn >> bEnabled;
-//}
-
//*************************************************************************
XFillFloatTransparenceItem::XFillFloatTransparenceItem(SfxItemPool* /*pPool*/, const XGradient& rTheGradient, sal_Bool bEnable )
@@ -3716,13 +3665,6 @@ XFillFloatTransparenceItem::XFillFloatTransparenceItem(SfxItemPool* /*pPool*/, c
SetWhich( XATTR_FILLFLOATTRANSPARENCE );
}
-//*************************************************************************
-
-XFillFloatTransparenceItem::XFillFloatTransparenceItem(SfxItemPool* /*pPool*/)
-{
- SetWhich( XATTR_FILLFLOATTRANSPARENCE );
-}
-
//------------------------------------------------------------------------
int XFillFloatTransparenceItem::operator==( const SfxPoolItem& rItem ) const
@@ -3869,20 +3811,6 @@ TYPEINIT1_AUTOFACTORY(XFillHatchItem, NameOrIndex);
/*************************************************************************
|*
-|* XFillHatchItem::XFillHatchItem(sal_Int32 nIndex,
-|* const XHatch& rTheHatch)
-|*
-*************************************************************************/
-
-XFillHatchItem::XFillHatchItem(sal_Int32 nIndex,
- const XHatch& rTheHatch) :
- NameOrIndex(XATTR_FILLHATCH, nIndex),
- aHatch(rTheHatch)
-{
-}
-
-/*************************************************************************
-|*
|* XFillHatchItem::XFillHatchItem(const XubString& rName,
|* const XHatch& rTheHatch)
|*
@@ -3946,13 +3874,6 @@ XFillHatchItem::XFillHatchItem(SfxItemPool* /*pPool*/, const XHatch& rTheHatch)
{
}
-//*************************************************************************
-
-XFillHatchItem::XFillHatchItem(SfxItemPool* /*pPool*/)
-: NameOrIndex(XATTR_FILLHATCH, -1 )
-{
-}
-
/*************************************************************************
|*
|* XFillHatchItem::Clone(SfxItemPool* pPool) const
@@ -4734,18 +4655,6 @@ TYPEINIT1_AUTOFACTORY(XFormTextShadowColorItem, XColorItem);
/*************************************************************************
|*
-|* XFormTextShadowColorItem::XFormTextShadowColorItem()
-|*
-*************************************************************************/
-
-XFormTextShadowColorItem::XFormTextShadowColorItem(sal_Int32 nIndex,
- const Color& rTheColor) :
- XColorItem(XATTR_FORMTXTSHDWCOLOR, nIndex, rTheColor)
-{
-}
-
-/*************************************************************************
-|*
|* XFormTextShadowColorItem::XFormTextShadowColorItem(const XubString& rName, const Color& rTheColor)
|*
*************************************************************************/
diff --git a/svx/source/xoutdev/xattrbmp.cxx b/svx/source/xoutdev/xattrbmp.cxx
index 9b37584b6f05..80ff904ee3bf 100644
--- a/svx/source/xoutdev/xattrbmp.cxx
+++ b/svx/source/xoutdev/xattrbmp.cxx
@@ -372,20 +372,6 @@ TYPEINIT1_AUTOFACTORY(XFillBitmapItem, NameOrIndex);
/*************************************************************************
|*
-|* XFillBitmapItem::XFillBitmapItem(long nIndex,
-|* const Bitmap& rTheBitmap)
-|*
-*************************************************************************/
-
-XFillBitmapItem::XFillBitmapItem(long nIndex,
- const XOBitmap& rTheBitmap) :
- NameOrIndex( XATTR_FILLBITMAP, nIndex ),
- aXOBitmap( rTheBitmap )
-{
-}
-
-/*************************************************************************
-|*
|* XFillBitmapItem::XFillBitmapItem(const XubString& rName,
|* const Bitmap& rTheBitmap)
|*
@@ -488,13 +474,6 @@ XFillBitmapItem::XFillBitmapItem( SfxItemPool* /*pPool*/, const XOBitmap& rTheBi
{
}
-//*************************************************************************
-
-XFillBitmapItem::XFillBitmapItem( SfxItemPool* /*pPool*/)
-: NameOrIndex(XATTR_FILLBITMAP, -1 )
-{
-}
-
/*************************************************************************
|*
|* XFillBitmapItem::Clone(SfxItemPool* pPool) const
diff --git a/svx/source/xoutdev/xtabbtmp.cxx b/svx/source/xoutdev/xtabbtmp.cxx
index 320f4fdd04bf..5c9f4bad3904 100644
--- a/svx/source/xoutdev/xtabbtmp.cxx
+++ b/svx/source/xoutdev/xtabbtmp.cxx
@@ -84,13 +84,6 @@ XBitmapList::~XBitmapList()
/************************************************************************/
-XBitmapEntry* XBitmapList::Replace(XBitmapEntry* pEntry, long nIndex )
-{
- return (XBitmapEntry*) XPropertyList::Replace(pEntry, nIndex);
-}
-
-/************************************************************************/
-
XBitmapEntry* XBitmapList::Remove(long nIndex)
{
return (XBitmapEntry*) XPropertyList::Remove(nIndex);