summaryrefslogtreecommitdiff
path: root/include/svx/sdr/properties/graphicproperties.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
commit567ef6d5782cdb729b49005caf6005610ce03e22 (patch)
tree7e3be1da41382e555d9091914ef7e064852a4fd4 /include/svx/sdr/properties/graphicproperties.hxx
parentc36daa01f444ebad799c1cc7a106f1b4bb3c3d12 (diff)
Second batch of adding SAL_OVERRIDE to overriding function declarations
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: Ie656f9d653fc716f72ac175925272696d509038f
Diffstat (limited to 'include/svx/sdr/properties/graphicproperties.hxx')
-rw-r--r--include/svx/sdr/properties/graphicproperties.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/svx/sdr/properties/graphicproperties.hxx b/include/svx/sdr/properties/graphicproperties.hxx
index b380fbeb8f0e..8299f5a2955d 100644
--- a/include/svx/sdr/properties/graphicproperties.hxx
+++ b/include/svx/sdr/properties/graphicproperties.hxx
@@ -32,10 +32,10 @@ namespace sdr
{
protected:
// create a new itemset
- virtual SfxItemSet& CreateObjectSpecificItemSet(SfxItemPool& rPool);
+ virtual SfxItemSet& CreateObjectSpecificItemSet(SfxItemPool& rPool) SAL_OVERRIDE;
// react on ItemSet changes
- virtual void ItemSetChanged(const SfxItemSet& rSet);
+ virtual void ItemSetChanged(const SfxItemSet& rSet) SAL_OVERRIDE;
public:
// basic constructor
@@ -48,14 +48,14 @@ namespace sdr
virtual ~GraphicProperties();
// Clone() operator, normally just calls the local copy constructor
- virtual BaseProperties& Clone(SdrObject& rObj) const;
+ virtual BaseProperties& Clone(SdrObject& rObj) const SAL_OVERRIDE;
// set a new StyleSheet and broadcast
- virtual void SetStyleSheet(SfxStyleSheet* pNewStyleSheet, bool bDontRemoveHardAttr);
+ virtual void SetStyleSheet(SfxStyleSheet* pNewStyleSheet, bool bDontRemoveHardAttr) SAL_OVERRIDE;
// force default attributes for a specific object type, called from
// DefaultProperties::GetObjectItemSet() if a new ItemSet is created
- virtual void ForceDefaultAttributes();
+ virtual void ForceDefaultAttributes() SAL_OVERRIDE;
};
} // end of namespace properties
} // end of namespace sdr