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/guitable.cpp | |
parent | 9ca8495acdebb975a7b0777e11d7c599e61c0185 (diff) | |
download | plus-9e3f92a3914e28ce01331d7df7d03c31244a843b.tar.gz plus-9e3f92a3914e28ce01331d7df7d03c31244a843b.tar.bz2 plus-9e3f92a3914e28ce01331d7df7d03c31244a843b.tar.xz plus-9e3f92a3914e28ce01331d7df7d03c31244a843b.zip |
move keyevent into events directory.
Diffstat (limited to 'src/gui/widgets/guitable.cpp')
-rw-r--r-- | src/gui/widgets/guitable.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/widgets/guitable.cpp b/src/gui/widgets/guitable.cpp index dcb5431d5..1d3dc0c55 100644 --- a/src/gui/widgets/guitable.cpp +++ b/src/gui/widgets/guitable.cpp @@ -24,7 +24,8 @@ #include "client.h" -#include "input/keyevent.h" +#include "events/keyevent.h" + #include "input/keydata.h" #include "utils/dtor.h" @@ -418,7 +419,7 @@ gcn::Rectangle GuiTable::getChildrenArea() } // -- KeyListener notifications -void GuiTable::keyPressed(gcn::KeyEvent& keyEvent) +void GuiTable::keyPressed(KeyEvent& keyEvent) { const int action = static_cast<KeyEvent*>(&keyEvent)->getActionId(); |