diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-09-22 02:34:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-09-22 21:22:21 +0300 |
commit | 4a5cdfe19cbb50e3b58149c6e91312366ee4b771 (patch) | |
tree | 7a2bbae95b5f6642731f2a1257913baad71d028d /src/gui/focushandler.h | |
parent | 3dcf21babe03cee5080a25e787e1d7e72124288e (diff) | |
download | ManaVerse-4a5cdfe19cbb50e3b58149c6e91312366ee4b771.tar.gz ManaVerse-4a5cdfe19cbb50e3b58149c6e91312366ee4b771.tar.bz2 ManaVerse-4a5cdfe19cbb50e3b58149c6e91312366ee4b771.tar.xz ManaVerse-4a5cdfe19cbb50e3b58149c6e91312366ee4b771.zip |
Add override keyword to most overriden methods.
Diffstat (limited to 'src/gui/focushandler.h')
-rw-r--r-- | src/gui/focushandler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/focushandler.h b/src/gui/focushandler.h index a2c565ff6..f5aa3e8fb 100644 --- a/src/gui/focushandler.h +++ b/src/gui/focushandler.h @@ -42,14 +42,14 @@ class FocusHandler final : public gcn::FocusHandler * then that widget loses modal focus and will regain it after this * widget releases his modal focus. */ - void requestModalFocus(gcn::Widget *widget); + void requestModalFocus(gcn::Widget *widget) override; /** * Releases modal focus of a widget. When this widget had modal focus * and there are other widgets that had also requested modal focus, * then modal focus will be transfered to the last of those. */ - void releaseModalFocus(gcn::Widget *widget); + void releaseModalFocus(gcn::Widget *widget) override; /** * Removes a widget from the focus handler. Also makes sure no dangling |