diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2013-01-30 18:38:13 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2013-01-30 21:35:36 +0100 |
commit | 3891d323cdc3c03154f5682baaeaa4b2ef015a63 (patch) | |
tree | bb0882eeb9f36eb03a5c6c269c892428544dfd02 /oox | |
parent | 086b070e31f607ffc4b057eef54669b95d774279 (diff) |
Introduce SAL_OVERRIDE
Change-Id: I3675b627d5e9ca19b2c4fb69fef12d0dabf94a43
Diffstat (limited to 'oox')
-rw-r--r-- | oox/inc/oox/vml/vmlshape.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/inc/oox/vml/vmlshape.hxx b/oox/inc/oox/vml/vmlshape.hxx index 8373d4ff8674..f1a96523e9ce 100644 --- a/oox/inc/oox/vml/vmlshape.hxx +++ b/oox/inc/oox/vml/vmlshape.hxx @@ -340,9 +340,9 @@ public: protected: /** Returns the absolute shape rectangle. */ - virtual ::com::sun::star::awt::Rectangle getAbsRectangle() const; + virtual ::com::sun::star::awt::Rectangle getAbsRectangle() const SAL_OVERRIDE; /** Returns the rectangle relative to the parent coordinate system. */ - virtual ::com::sun::star::awt::Rectangle getRelRectangle() const; + virtual ::com::sun::star::awt::Rectangle getRelRectangle() const SAL_OVERRIDE; }; /** Bezier shape object that supports to, from, control1 and control2 |