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 /sw/inc/unocrsr.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 'sw/inc/unocrsr.hxx')
-rw-r--r-- | sw/inc/unocrsr.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sw/inc/unocrsr.hxx b/sw/inc/unocrsr.hxx index d2830284ed0e..2ce45aaf442f 100644 --- a/sw/inc/unocrsr.hxx +++ b/sw/inc/unocrsr.hxx @@ -34,8 +34,8 @@ public: protected: virtual const SwCntntFrm* DoSetBidiLevelLeftRight( - sal_Bool & io_rbLeft, sal_Bool bVisualAllowed, sal_Bool bInsertCrsr); - virtual void DoSetBidiLevelUpDown(); + sal_Bool & io_rbLeft, sal_Bool bVisualAllowed, sal_Bool bInsertCrsr) SAL_OVERRIDE; + virtual void DoSetBidiLevelUpDown() SAL_OVERRIDE; public: @@ -44,19 +44,19 @@ public: virtual sal_Bool IsSelOvr( int eFlags = ( nsSwCursorSelOverFlags::SELOVER_CHECKNODESSECTION | nsSwCursorSelOverFlags::SELOVER_TOGGLE | - nsSwCursorSelOverFlags::SELOVER_CHANGEPOS )); + nsSwCursorSelOverFlags::SELOVER_CHANGEPOS )) SAL_OVERRIDE; - virtual bool IsReadOnlyAvailable() const; + virtual bool IsReadOnlyAvailable() const SAL_OVERRIDE; sal_Bool IsRemainInSection() const { return bRemainInSection; } void SetRemainInSection( sal_Bool bFlag ) { bRemainInSection = bFlag; } - virtual sal_Bool IsSkipOverProtectSections() const + virtual sal_Bool IsSkipOverProtectSections() const SAL_OVERRIDE { return bSkipOverProtectSections; } void SetSkipOverProtectSections( sal_Bool bFlag ) { bSkipOverProtectSections = bFlag; } - virtual sal_Bool IsSkipOverHiddenSections() const + virtual sal_Bool IsSkipOverHiddenSections() const SAL_OVERRIDE { return bSkipOverHiddenSections; } void SetSkipOverHiddenSections( sal_Bool bFlag ) { bSkipOverHiddenSections = bFlag; } @@ -85,9 +85,9 @@ public: virtual sal_Bool IsSelOvr( int eFlags = ( nsSwCursorSelOverFlags::SELOVER_CHECKNODESSECTION | nsSwCursorSelOverFlags::SELOVER_TOGGLE | - nsSwCursorSelOverFlags::SELOVER_CHANGEPOS )); + nsSwCursorSelOverFlags::SELOVER_CHANGEPOS )) SAL_OVERRIDE; - virtual SwUnoTableCrsr * Clone() const; + virtual SwUnoTableCrsr * Clone() const SAL_OVERRIDE; void MakeBoxSels(); |