diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 16:04:04 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 17:52:29 +0200 |
commit | b36963c0a6a09f70ca6d8d607dd3249a3496497d (patch) | |
tree | 33e06dc8d227957cb31355277fb5cf20b9918628 /include/svx/svdpoev.hxx | |
parent | b08247a12b43fcd9f86ecd912fce7d69a3e66061 (diff) |
Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
Diffstat (limited to 'include/svx/svdpoev.hxx')
-rw-r--r-- | include/svx/svdpoev.hxx | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/include/svx/svdpoev.hxx b/include/svx/svdpoev.hxx index 6aaf895ad3e8..f944240e8f19 100644 --- a/include/svx/svdpoev.hxx +++ b/include/svx/svdpoev.hxx @@ -50,31 +50,31 @@ protected: virtual ~SdrPolyEditView(); public: - bool IsSetMarkedPointsSmoothPossible() const SAL_OVERRIDE; - SdrPathSmoothKind GetMarkedPointsSmooth() const SAL_OVERRIDE; - void SetMarkedPointsSmooth(SdrPathSmoothKind eKind) SAL_OVERRIDE; + bool IsSetMarkedPointsSmoothPossible() const override; + SdrPathSmoothKind GetMarkedPointsSmooth() const override; + void SetMarkedPointsSmooth(SdrPathSmoothKind eKind) override; // A PolySegment can either be a segment or a Bézier curve - bool IsSetMarkedSegmentsKindPossible() const SAL_OVERRIDE; - SdrPathSegmentKind GetMarkedSegmentsKind() const SAL_OVERRIDE; - void SetMarkedSegmentsKind(SdrPathSegmentKind eKind) SAL_OVERRIDE; + bool IsSetMarkedSegmentsKindPossible() const override; + SdrPathSegmentKind GetMarkedSegmentsKind() const override; + void SetMarkedSegmentsKind(SdrPathSegmentKind eKind) override; // Probably Obj has been deleted afterwards - void DeleteMarkedPoints() SAL_OVERRIDE; - bool IsDeleteMarkedPointsPossible() const SAL_OVERRIDE; + void DeleteMarkedPoints() override; + bool IsDeleteMarkedPointsPossible() const override; void MoveMarkedPoints(const Size& rSiz); void ResizeMarkedPoints(const Point& rRef, const Fraction& xFact, const Fraction& yFact); void RotateMarkedPoints(const Point& rRef, long nAngle); // This probably creates an abitrary amount of new objects - void RipUpAtMarkedPoints() SAL_OVERRIDE; - bool IsRipUpAtMarkedPointsPossible() const SAL_OVERRIDE; + void RipUpAtMarkedPoints() override; + bool IsRipUpAtMarkedPointsPossible() const override; // All marked Polylines are turned into polygons // All open Bézier curves are turned into closed ones - bool IsOpenCloseMarkedObjectsPossible() const SAL_OVERRIDE; - SdrObjClosedKind GetMarkedObjectsClosedState() const SAL_OVERRIDE; + bool IsOpenCloseMarkedObjectsPossible() const override; + SdrObjClosedKind GetMarkedObjectsClosedState() const override; void CheckPolyPossibilitiesHelper( SdrMark* pM, bool& b1stSmooth, bool& b1stSegm, bool& bCurve, bool& bSmoothFuz, bool& bSegmFuz, basegfx::B2VectorContinuity& eSmooth ); }; |