summaryrefslogtreecommitdiffstats
path: root/include/svx/sdr/properties/pageproperties.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svx/sdr/properties/pageproperties.hxx')
-rw-r--r--include/svx/sdr/properties/pageproperties.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/svx/sdr/properties/pageproperties.hxx b/include/svx/sdr/properties/pageproperties.hxx
index 08f583b5842b..6af7debda17a 100644
--- a/include/svx/sdr/properties/pageproperties.hxx
+++ b/include/svx/sdr/properties/pageproperties.hxx
@@ -32,13 +32,13 @@ namespace sdr
{
protected:
// create a new object specific itemset with object specific ranges.
- virtual SfxItemSet& CreateObjectSpecificItemSet(SfxItemPool& pPool);
+ virtual SfxItemSet& CreateObjectSpecificItemSet(SfxItemPool& pPool) 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;
public:
// basic constructor
@@ -51,17 +51,17 @@ namespace sdr
virtual ~PageProperties();
// 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. Overloaded here to allow creating the empty itemset
// without asserting
- virtual const SfxItemSet& GetObjectItemSet() const;
+ virtual const SfxItemSet& GetObjectItemSet() const SAL_OVERRIDE;
// get the installed StyleSheet
- virtual SfxStyleSheet* GetStyleSheet() const;
+ virtual SfxStyleSheet* GetStyleSheet() const SAL_OVERRIDE;
// clear single item
- virtual void ClearObjectItem(const sal_uInt16 nWhich = 0);
+ virtual void ClearObjectItem(const sal_uInt16 nWhich = 0) SAL_OVERRIDE;
};
} // end of namespace properties
} // end of namespace sdr