summaryrefslogtreecommitdiff
path: root/svx/inc/sdr
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2022-01-06 21:19:51 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-01-07 11:11:59 +0100
commitc52aa97b988aeeb16d1eb21262889f565b8a72a3 (patch)
treeb9525f57c24bba13e6a33a2c5a851b3d1af4375e /svx/inc/sdr
parent81ccab11ff457786c3877e7b0047d08685493d3c (diff)
move some methods BaseProperties->DefaultProperties
These methods are part of the implementation of DefaultProperties, so they do not belong in a superclass Change-Id: I553f5d5b771aa0a408a8ade25f009cc56f829c72 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128091 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/inc/sdr')
-rw-r--r--svx/inc/sdr/properties/emptyproperties.hxx15
-rw-r--r--svx/inc/sdr/properties/pageproperties.hxx15
2 files changed, 0 insertions, 30 deletions
diff --git a/svx/inc/sdr/properties/emptyproperties.hxx b/svx/inc/sdr/properties/emptyproperties.hxx
index b1afcf74a1f6..89deec42f3bd 100644
--- a/svx/inc/sdr/properties/emptyproperties.hxx
+++ b/svx/inc/sdr/properties/emptyproperties.hxx
@@ -35,21 +35,6 @@ namespace sdr::properties
// the to be used ItemSet
mutable std::optional<SfxItemSet> mxEmptyItemSet;
- // create a new itemset
- virtual SfxItemSet CreateObjectSpecificItemSet(SfxItemPool& rPool) override;
-
- // test changeability for a single item
- virtual bool AllowItemChange(const sal_uInt16 nWhich, const SfxPoolItem* pNewItem = nullptr) const override;
-
- // Do the ItemChange, may do special handling
- virtual void ItemChange(const sal_uInt16 nWhich, const SfxPoolItem* pNewItem = nullptr) override;
-
- // Called after ItemChange() is done for all items.
- virtual void PostItemChange(const sal_uInt16 nWhich) override;
-
- // react on ItemSet changes
- virtual void ItemSetChanged(const SfxItemSet*) override;
-
public:
// basic constructor
explicit EmptyProperties(SdrObject& rObj);
diff --git a/svx/inc/sdr/properties/pageproperties.hxx b/svx/inc/sdr/properties/pageproperties.hxx
index 7f801d2e99b7..5473c692812d 100644
--- a/svx/inc/sdr/properties/pageproperties.hxx
+++ b/svx/inc/sdr/properties/pageproperties.hxx
@@ -31,21 +31,6 @@ namespace sdr::properties
// the to be used ItemSet
mutable std::optional<SfxItemSet> mxEmptyItemSet;
- // create a new object specific itemset with object specific ranges.
- virtual SfxItemSet CreateObjectSpecificItemSet(SfxItemPool& pPool) override;
-
- // Do the ItemChange, may do special handling
- virtual void ItemChange(const sal_uInt16 nWhich, const SfxPoolItem* pNewItem = nullptr) override;
-
- // Called after ItemChange() is done for all items.
- virtual void PostItemChange(const sal_uInt16 nWhich) override;
-
- // test changeability for a single item
- virtual bool AllowItemChange(const sal_uInt16 nWhich, const SfxPoolItem* pNewItem = nullptr) const override;
-
- // react on ItemSet changes
- virtual void ItemSetChanged(const SfxItemSet*) override;
-
public:
// basic constructor
explicit PageProperties(SdrObject& rObj);