diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-16 13:30:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-16 13:44:58 +0300 |
commit | 9e3f92a3914e28ce01331d7df7d03c31244a843b (patch) | |
tree | f1e8618bb1f649e10f78f4d2d53d6861474930f5 /src/gui/widgets/button.cpp | |
parent | 9ca8495acdebb975a7b0777e11d7c599e61c0185 (diff) | |
download | mv-9e3f92a3914e28ce01331d7df7d03c31244a843b.tar.gz mv-9e3f92a3914e28ce01331d7df7d03c31244a843b.tar.bz2 mv-9e3f92a3914e28ce01331d7df7d03c31244a843b.tar.xz mv-9e3f92a3914e28ce01331d7df7d03c31244a843b.zip |
move keyevent into events directory.
Diffstat (limited to 'src/gui/widgets/button.cpp')
-rw-r--r-- | src/gui/widgets/button.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gui/widgets/button.cpp b/src/gui/widgets/button.cpp index 5478d8164..10088d5f4 100644 --- a/src/gui/widgets/button.cpp +++ b/src/gui/widgets/button.cpp @@ -25,8 +25,9 @@ #include "client.h" #include "graphicsvertexes.h" +#include "events/keyevent.h" + #include "input/keydata.h" -#include "input/keyevent.h" #include "resources/imageset.h" @@ -589,7 +590,7 @@ void Button::setCaption(const std::string& caption) mCaption = caption; } -void Button::keyPressed(gcn::KeyEvent& keyEvent) +void Button::keyPressed(KeyEvent& keyEvent) { const int action = static_cast<KeyEvent*>(&keyEvent)->getActionId(); @@ -600,7 +601,7 @@ void Button::keyPressed(gcn::KeyEvent& keyEvent) } } -void Button::keyReleased(gcn::KeyEvent& keyEvent) +void Button::keyReleased(KeyEvent& keyEvent) { const int action = static_cast<KeyEvent*>(&keyEvent)->getActionId(); |