summaryrefslogtreecommitdiff
path: root/include/svx/sdr/properties/emptyproperties.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svx/sdr/properties/emptyproperties.hxx')
-rw-r--r--include/svx/sdr/properties/emptyproperties.hxx28
1 files changed, 14 insertions, 14 deletions
diff --git a/include/svx/sdr/properties/emptyproperties.hxx b/include/svx/sdr/properties/emptyproperties.hxx
index ce13b8307f8c..1c7f0250046a 100644
--- a/include/svx/sdr/properties/emptyproperties.hxx
+++ b/include/svx/sdr/properties/emptyproperties.hxx
@@ -36,19 +36,19 @@ namespace sdr
SfxItemSet* mpEmptyItemSet;
// create a new itemset
- virtual SfxItemSet& CreateObjectSpecificItemSet(SfxItemPool& rPool);
+ virtual SfxItemSet& CreateObjectSpecificItemSet(SfxItemPool& rPool) SAL_OVERRIDE;
// test changeability for a single item
- virtual bool AllowItemChange(const sal_uInt16 nWhich, const SfxPoolItem* pNewItem = 0) const;
+ virtual bool AllowItemChange(const sal_uInt16 nWhich, const SfxPoolItem* pNewItem = 0) const SAL_OVERRIDE;
// Do the ItemChange, may do special handling
- virtual void ItemChange(const sal_uInt16 nWhich, const SfxPoolItem* pNewItem = 0);
+ virtual void ItemChange(const sal_uInt16 nWhich, const SfxPoolItem* pNewItem = 0) SAL_OVERRIDE;
// Called after ItemChange() is done for all items.
- virtual void PostItemChange(const sal_uInt16 nWhich);
+ virtual void PostItemChange(const sal_uInt16 nWhich) SAL_OVERRIDE;
// react on ItemSet changes
- virtual void ItemSetChanged(const SfxItemSet& rSet);
+ virtual void ItemSetChanged(const SfxItemSet& rSet) SAL_OVERRIDE;
public:
// basic constructor
@@ -61,32 +61,32 @@ namespace sdr
virtual ~EmptyProperties();
// Clone() operator, normally just calls the local copy constructor
- virtual BaseProperties& Clone(SdrObject& rObj) const;
+ virtual BaseProperties& Clone(SdrObject& rObj) const SAL_OVERRIDE;
// get itemset
- virtual const SfxItemSet& GetObjectItemSet() const;
+ virtual const SfxItemSet& GetObjectItemSet() const SAL_OVERRIDE;
// set single item
- virtual void SetObjectItem(const SfxPoolItem& rItem);
+ virtual void SetObjectItem(const SfxPoolItem& rItem) SAL_OVERRIDE;
// set single item direct, do not do any notifies or things like that
- virtual void SetObjectItemDirect(const SfxPoolItem& rItem);
+ virtual void SetObjectItemDirect(const SfxPoolItem& rItem) SAL_OVERRIDE;
// clear single item
- virtual void ClearObjectItem(const sal_uInt16 nWhich = 0);
+ virtual void ClearObjectItem(const sal_uInt16 nWhich = 0) SAL_OVERRIDE;
// clear single item direct, do not do any notifies or things like that.
// Also supports complete deleteion of items when default parameter 0 is used.
- virtual void ClearObjectItemDirect(const sal_uInt16 nWhich = 0);
+ virtual void ClearObjectItemDirect(const sal_uInt16 nWhich = 0) SAL_OVERRIDE;
// set complete item set
- virtual void SetObjectItemSet(const SfxItemSet& rSet);
+ virtual void SetObjectItemSet(const SfxItemSet& rSet) SAL_OVERRIDE;
// set a new StyleSheet and broadcast
- virtual void SetStyleSheet(SfxStyleSheet* pNewStyleSheet, bool bDontRemoveHardAttr);
+ virtual void SetStyleSheet(SfxStyleSheet* pNewStyleSheet, bool bDontRemoveHardAttr) SAL_OVERRIDE;
// get the installed StyleSheet
- virtual SfxStyleSheet* GetStyleSheet() const;
+ virtual SfxStyleSheet* GetStyleSheet() const SAL_OVERRIDE;
};
} // end of namespace properties
} // end of namespace sdr