summaryrefslogtreecommitdiff
path: root/cui/source/inc/thesdlg.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-27 18:12:18 +0100
commit567ef6d5782cdb729b49005caf6005610ce03e22 (patch)
tree7e3be1da41382e555d9091914ef7e064852a4fd4 /cui/source/inc/thesdlg.hxx
parentc36daa01f444ebad799c1cc7a106f1b4bb3c3d12 (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 'cui/source/inc/thesdlg.hxx')
-rw-r--r--cui/source/inc/thesdlg.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/cui/source/inc/thesdlg.hxx b/cui/source/inc/thesdlg.hxx
index b84112e2d5d9..16a9801f924b 100644
--- a/cui/source/inc/thesdlg.hxx
+++ b/cui/source/inc/thesdlg.hxx
@@ -50,7 +50,7 @@ public:
void init(SvxThesaurusDialog *pDialog);
// ComboBox
- virtual void Modify();
+ virtual void Modify() SAL_OVERRIDE;
};
class AlternativesExtraData
@@ -95,8 +95,8 @@ public:
void SetExtraData( const SvTreeListEntry *pEntry, const AlternativesExtraData &rData );
AlternativesExtraData * GetExtraData( const SvTreeListEntry *pEntry );
- virtual void KeyInput( const KeyEvent& rKEvt );
- virtual void Paint( const Rectangle& rRect );
+ virtual void KeyInput( const KeyEvent& rKEvt ) SAL_OVERRIDE;
+ virtual void Paint( const Rectangle& rRect ) SAL_OVERRIDE;
};
class ReplaceEdit : public Edit
@@ -114,9 +114,9 @@ public:
void init(Button *pBtn) { m_pBtn = pBtn; }
// Edit
- virtual void Modify();
- virtual void SetText( const OUString& rStr );
- virtual void SetText( const OUString& rStr, const Selection& rNewSelection );
+ virtual void Modify() SAL_OVERRIDE;
+ virtual void SetText( const OUString& rStr ) SAL_OVERRIDE;
+ virtual void SetText( const OUString& rStr, const Selection& rNewSelection ) SAL_OVERRIDE;
};
class SvxThesaurusDialog : public SvxStandardDialog
@@ -156,7 +156,7 @@ public:
bool UpdateAlternativesBox_Impl();
void LookUp( const OUString &rText );
void LookUp_Impl();
- virtual void Apply();
+ virtual void Apply() SAL_OVERRIDE;
public:
SvxThesaurusDialog( Window* pParent,