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/windows/inventorywindow.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/windows/inventorywindow.cpp')
-rw-r--r-- | src/gui/windows/inventorywindow.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gui/windows/inventorywindow.cpp b/src/gui/windows/inventorywindow.cpp index 2412b524b..24b5cdab3 100644 --- a/src/gui/windows/inventorywindow.cpp +++ b/src/gui/windows/inventorywindow.cpp @@ -28,8 +28,9 @@ #include "being/playerinfo.h" +#include "events/keyevent.h" + #include "input/inputmanager.h" -#include "input/keyevent.h" #include "gui/viewport.h" @@ -612,7 +613,7 @@ void InventoryWindow::mouseExited(gcn::MouseEvent &event A_UNUSED) mTextPopup->hide(); } -void InventoryWindow::keyPressed(gcn::KeyEvent &event) +void InventoryWindow::keyPressed(KeyEvent &event) { if (static_cast<KeyEvent*>(&event)->getActionId() == static_cast<int>(Input::KEY_GUI_MOD)) @@ -621,7 +622,7 @@ void InventoryWindow::keyPressed(gcn::KeyEvent &event) } } -void InventoryWindow::keyReleased(gcn::KeyEvent &event) +void InventoryWindow::keyReleased(KeyEvent &event) { if (static_cast<KeyEvent*>(&event)->getActionId() == static_cast<int>(Input::KEY_GUI_MOD)) |