summaryrefslogtreecommitdiff
path: root/include/vbahelper/vbahelper.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-12 16:04:04 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-12 17:52:29 +0200
commitb36963c0a6a09f70ca6d8d607dd3249a3496497d (patch)
tree33e06dc8d227957cb31355277fb5cf20b9918628 /include/vbahelper/vbahelper.hxx
parentb08247a12b43fcd9f86ecd912fce7d69a3e66061 (diff)
Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
Diffstat (limited to 'include/vbahelper/vbahelper.hxx')
-rw-r--r--include/vbahelper/vbahelper.hxx44
1 files changed, 22 insertions, 22 deletions
diff --git a/include/vbahelper/vbahelper.hxx b/include/vbahelper/vbahelper.hxx
index 7c4956a183ce..d7eb4e6cfdfc 100644
--- a/include/vbahelper/vbahelper.hxx
+++ b/include/vbahelper/vbahelper.hxx
@@ -175,14 +175,14 @@ class VBAHELPER_DLLPUBLIC ConcreteXShapeGeometryAttributes : public AbstractGeom
std::unique_ptr< ShapeHelper > m_pShapeHelper;
public:
ConcreteXShapeGeometryAttributes( const css::uno::Reference< css::uno::XComponentContext >& xContext, const css::uno::Reference< css::drawing::XShape >& xShape );
- virtual double getLeft() const SAL_OVERRIDE;
- virtual void setLeft( double nLeft ) SAL_OVERRIDE;
- virtual double getTop() const SAL_OVERRIDE;
- virtual void setTop( double nTop ) SAL_OVERRIDE;
- virtual double getHeight() const SAL_OVERRIDE;
- virtual void setHeight( double nHeight ) SAL_OVERRIDE;
- virtual double getWidth() const SAL_OVERRIDE;
- virtual void setWidth( double nWidth) SAL_OVERRIDE;
+ virtual double getLeft() const override;
+ virtual void setLeft( double nLeft ) override;
+ virtual double getTop() const override;
+ virtual void setTop( double nTop ) override;
+ virtual double getHeight() const override;
+ virtual void setHeight( double nHeight ) override;
+ virtual double getWidth() const override;
+ virtual void setWidth( double nWidth) override;
virtual ~ConcreteXShapeGeometryAttributes();
};
@@ -195,20 +195,20 @@ public:
const css::uno::Reference< css::uno::XComponentContext >& xContext,
const css::uno::Reference< css::awt::XControl >& xControl,
double fOffsetX, double fOffsetY );
- virtual double getLeft() const SAL_OVERRIDE;
- virtual void setLeft( double fLeft ) SAL_OVERRIDE;
- virtual double getTop() const SAL_OVERRIDE;
- virtual void setTop( double fTop ) SAL_OVERRIDE;
- virtual double getWidth() const SAL_OVERRIDE;
- virtual void setWidth( double fWidth ) SAL_OVERRIDE;
- virtual double getHeight() const SAL_OVERRIDE;
- virtual void setHeight( double fHeight ) SAL_OVERRIDE;
- virtual double getInnerWidth() const SAL_OVERRIDE;
- virtual void setInnerWidth( double fWidth ) SAL_OVERRIDE;
- virtual double getInnerHeight() const SAL_OVERRIDE;
- virtual void setInnerHeight( double fHeight ) SAL_OVERRIDE;
- virtual double getOffsetX() const SAL_OVERRIDE;
- virtual double getOffsetY() const SAL_OVERRIDE;
+ virtual double getLeft() const override;
+ virtual void setLeft( double fLeft ) override;
+ virtual double getTop() const override;
+ virtual void setTop( double fTop ) override;
+ virtual double getWidth() const override;
+ virtual void setWidth( double fWidth ) override;
+ virtual double getHeight() const override;
+ virtual void setHeight( double fHeight ) override;
+ virtual double getInnerWidth() const override;
+ virtual void setInnerWidth( double fWidth ) override;
+ virtual double getInnerHeight() const override;
+ virtual void setInnerHeight( double fHeight ) override;
+ virtual double getOffsetX() const override;
+ virtual double getOffsetY() const override;
private:
double implGetPos( bool bPosY ) const;