summaryrefslogtreecommitdiff
path: root/src/gui/sdlinput.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-05-19 19:47:08 +0300
committerAndrei Karas <akaras@inbox.ru>2013-05-19 19:47:08 +0300
commit2ff996eb1b6e7e8f277efe369d616d57558c6667 (patch)
treea09c56157dc69b2d51b85c07e4f76c6ad221222b /src/gui/sdlinput.h
parent3203c6bd824cd8ac4e86374afafe01e45d358a40 (diff)
downloadplus-2ff996eb1b6e7e8f277efe369d616d57558c6667.tar.gz
plus-2ff996eb1b6e7e8f277efe369d616d57558c6667.tar.bz2
plus-2ff996eb1b6e7e8f277efe369d616d57558c6667.tar.xz
plus-2ff996eb1b6e7e8f277efe369d616d57558c6667.zip
improve sdlinput file.
Diffstat (limited to 'src/gui/sdlinput.h')
-rw-r--r--src/gui/sdlinput.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/sdlinput.h b/src/gui/sdlinput.h
index e6983a37a..eaf6f4cf5 100644
--- a/src/gui/sdlinput.h
+++ b/src/gui/sdlinput.h
@@ -145,30 +145,30 @@ public:
*
* @param event an event from SDL.
*/
- virtual void pushInput(const SDL_Event &event);
+ void pushInput(const SDL_Event &event);
/**
* Polls all input. It exists for input driver compatibility. If you
* only use SDL and plan sticking with SDL you can safely ignore this
* function as it in the SDL case does nothing.
*/
- virtual void _pollInput()
+ void _pollInput() override
{ }
- virtual KeyInput dequeueKeyInput2() A_WARN_UNUSED;
+ KeyInput dequeueKeyInput2() A_WARN_UNUSED;
- virtual gcn::KeyInput dequeueKeyInput() A_WARN_UNUSED
+ gcn::KeyInput dequeueKeyInput() override A_WARN_UNUSED
{ return gcn::KeyInput(); }
// Inherited from Input
- virtual bool isKeyQueueEmpty() A_WARN_UNUSED;
+ bool isKeyQueueEmpty() override A_WARN_UNUSED;
- virtual bool isMouseQueueEmpty() A_WARN_UNUSED;
+ bool isMouseQueueEmpty() override A_WARN_UNUSED;
- virtual gcn::MouseInput dequeueMouseInput() A_WARN_UNUSED;
+ gcn::MouseInput dequeueMouseInput() override A_WARN_UNUSED;
- virtual MouseInput dequeueMouseInput2() A_WARN_UNUSED;
+ MouseInput dequeueMouseInput2() A_WARN_UNUSED;
protected:
/**