diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-27 18:12:18 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-27 18:12:18 +0100 |
commit | 567ef6d5782cdb729b49005caf6005610ce03e22 (patch) | |
tree | 7e3be1da41382e555d9091914ef7e064852a4fd4 /include/svx/svdpoev.hxx | |
parent | c36daa01f444ebad799c1cc7a106f1b4bb3c3d12 (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/svdpoev.hxx')
-rw-r--r-- | include/svx/svdpoev.hxx | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/include/svx/svdpoev.hxx b/include/svx/svdpoev.hxx index f3b79e13c8c1..568b7f4104ea 100644 --- a/include/svx/svdpoev.hxx +++ b/include/svx/svdpoev.hxx @@ -50,32 +50,32 @@ protected: virtual ~SdrPolyEditView(); public: - bool IsSetMarkedPointsSmoothPossible() const; - SdrPathSmoothKind GetMarkedPointsSmooth() const; - void SetMarkedPointsSmooth(SdrPathSmoothKind eKind); + bool IsSetMarkedPointsSmoothPossible() const SAL_OVERRIDE; + SdrPathSmoothKind GetMarkedPointsSmooth() const SAL_OVERRIDE; + void SetMarkedPointsSmooth(SdrPathSmoothKind eKind) SAL_OVERRIDE; // Ein PolySegment kann eine Strecke oder eine Bezierkurve sein. - bool IsSetMarkedSegmentsKindPossible() const; - SdrPathSegmentKind GetMarkedSegmentsKind() const; - void SetMarkedSegmentsKind(SdrPathSegmentKind eKind); + bool IsSetMarkedSegmentsKindPossible() const SAL_OVERRIDE; + SdrPathSegmentKind GetMarkedSegmentsKind() const SAL_OVERRIDE; + void SetMarkedSegmentsKind(SdrPathSegmentKind eKind) SAL_OVERRIDE; // Moeglicherweise ist das Obj hinterher geloescht: - void DeleteMarkedPoints(); - bool IsDeleteMarkedPointsPossible() const; + void DeleteMarkedPoints() SAL_OVERRIDE; + bool IsDeleteMarkedPointsPossible() const SAL_OVERRIDE; void MoveMarkedPoints(const Size& rSiz, bool bCopy=false); void ResizeMarkedPoints(const Point& rRef, const Fraction& xFact, const Fraction& yFact, bool bCopy=false); void RotateMarkedPoints(const Point& rRef, long nWink, bool bCopy=false); // Hierbei entstehen eventuell beliebig viele neue Objekte: - void RipUpAtMarkedPoints(); - bool IsRipUpAtMarkedPointsPossible() const; + void RipUpAtMarkedPoints() SAL_OVERRIDE; + bool IsRipUpAtMarkedPointsPossible() const SAL_OVERRIDE; // Alle markierten Polylines werden zu Polygonen, alle offenen // Bezierkurven zu geschlossenen. - void CloseMarkedObjects(bool bToggle=false, bool bOpen=false); // , long nOpenDistance=0); - bool IsOpenCloseMarkedObjectsPossible() const; - SdrObjClosedKind GetMarkedObjectsClosedState() const; + void CloseMarkedObjects(bool bToggle=false, bool bOpen=false) SAL_OVERRIDE; // , long nOpenDistance=0); + bool IsOpenCloseMarkedObjectsPossible() const SAL_OVERRIDE; + SdrObjClosedKind GetMarkedObjectsClosedState() const SAL_OVERRIDE; void CheckPolyPossibilitiesHelper( SdrMark* pM, bool& b1stSmooth, bool& b1stSegm, bool& bCurve, bool& bSmoothFuz, bool& bSegmFuz, basegfx::B2VectorContinuity& eSmooth ); }; |