diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-03 11:27:32 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-03-03 11:09:46 +0000 |
commit | 2675f26f1a155257bd1680a1e1a1ba58da8c4452 (patch) | |
tree | 5227b9c07962e01d64419898833d8418c3d4f9e0 /sc | |
parent | f210499af1a6889785d49f8881672324afc755c1 (diff) |
remove unused CreateDefault methods
Change-Id: Ifbdd7d41f0938e9a03693f88416792ff8087f8c2
Reviewed-on: https://gerrit.libreoffice.org/34850
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/attrib.hxx | 10 | ||||
-rw-r--r-- | sc/inc/docoptio.hxx | 1 | ||||
-rw-r--r-- | sc/inc/printopt.hxx | 1 | ||||
-rw-r--r-- | sc/inc/viewopti.hxx | 1 |
4 files changed, 0 insertions, 13 deletions
diff --git a/sc/inc/attrib.hxx b/sc/inc/attrib.hxx index 5897942d1650..23e97ca17f1a 100644 --- a/sc/inc/attrib.hxx +++ b/sc/inc/attrib.hxx @@ -155,8 +155,6 @@ public: class ScRangeItem : public SfxPoolItem { public: - static SfxPoolItem* CreateDefault(); - inline ScRangeItem( const sal_uInt16 nWhich ); inline ScRangeItem( const ScRangeItem& rCpy ); @@ -195,8 +193,6 @@ inline ScRangeItem& ScRangeItem::operator=( const ScRangeItem &rCpy ) class ScTableListItem : public SfxPoolItem { public: - static SfxPoolItem* CreateDefault(); - inline ScTableListItem( const sal_uInt16 nWhich ); ScTableListItem( const ScTableListItem& rCpy ); virtual ~ScTableListItem() override; @@ -263,8 +259,6 @@ public: class SC_DLLPUBLIC ScViewObjectModeItem: public SfxEnumItem<ScVObjMode> { public: - static SfxPoolItem* CreateDefault(); - ScViewObjectModeItem( sal_uInt16 nWhich ); ScViewObjectModeItem( sal_uInt16 nWhich, ScVObjMode eMode ); virtual ~ScViewObjectModeItem() override; @@ -306,8 +300,6 @@ const sal_uInt8 SC_MID_PAGE_SCALETO_HEIGHT = 2; class SC_DLLPUBLIC ScPageScaleToItem : public SfxPoolItem { public: - static SfxPoolItem* CreateDefault(); - /** Default c'tor sets the width and height to 0. */ explicit ScPageScaleToItem(); explicit ScPageScaleToItem( sal_uInt16 nWidth, sal_uInt16 nHeight ); @@ -343,8 +335,6 @@ private: class ScCondFormatItem : public SfxPoolItem { public: - static SfxPoolItem* CreateDefault(); - explicit ScCondFormatItem(); explicit ScCondFormatItem(const std::vector<sal_uInt32>& nIndex); diff --git a/sc/inc/docoptio.hxx b/sc/inc/docoptio.hxx index 69bf7104e071..96b0e366bc7b 100644 --- a/sc/inc/docoptio.hxx +++ b/sc/inc/docoptio.hxx @@ -143,7 +143,6 @@ inline bool ScDocOptions::operator!=( const ScDocOptions& rOpt ) const class SC_DLLPUBLIC ScTpCalcItem : public SfxPoolItem { public: - static SfxPoolItem* CreateDefault(); ScTpCalcItem( sal_uInt16 nWhich, const ScDocOptions& rOpt ); ScTpCalcItem( const ScTpCalcItem& rItem ); diff --git a/sc/inc/printopt.hxx b/sc/inc/printopt.hxx index af2fd6495745..7e6fe5e143b8 100644 --- a/sc/inc/printopt.hxx +++ b/sc/inc/printopt.hxx @@ -54,7 +54,6 @@ public: class SC_DLLPUBLIC ScTpPrintItem : public SfxPoolItem { public: - static SfxPoolItem* CreateDefault(); ScTpPrintItem( sal_uInt16 nWhich, const ScPrintOptions& rOpt ); ScTpPrintItem( const ScTpPrintItem& rItem ); diff --git a/sc/inc/viewopti.hxx b/sc/inc/viewopti.hxx index 2627bc43b66c..c5dfd1afa208 100644 --- a/sc/inc/viewopti.hxx +++ b/sc/inc/viewopti.hxx @@ -115,7 +115,6 @@ private: class SC_DLLPUBLIC ScTpViewItem : public SfxPoolItem { public: - static SfxPoolItem* CreateDefault(); ScTpViewItem( sal_uInt16 nWhich, const ScViewOptions& rOpt ); ScTpViewItem( const ScTpViewItem& rItem ); virtual ~ScTpViewItem() override; |