diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-16 23:27:30 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-16 23:27:30 +0300 |
commit | d0bc46cd38aa82777621a99005a90d085e9821c3 (patch) | |
tree | 65c5345a70bf12779209c3bc9d3dc4851e93b76c /src/gui/gui.cpp | |
parent | 9fc5e9b475388ef57de62143438eae6d0af7da3c (diff) | |
download | plus-d0bc46cd38aa82777621a99005a90d085e9821c3.tar.gz plus-d0bc46cd38aa82777621a99005a90d085e9821c3.tar.bz2 plus-d0bc46cd38aa82777621a99005a90d085e9821c3.tar.xz plus-d0bc46cd38aa82777621a99005a90d085e9821c3.zip |
Combine keyinput into one file.
Diffstat (limited to 'src/gui/gui.cpp')
-rw-r--r-- | src/gui/gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index f549727a4..85aeb15f5 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -419,7 +419,7 @@ bool Gui::handleKeyInput2() // change focus. if (!keyEventConsumed && mTabbing && keyInput.getActionId() == static_cast<int>(Input::KEY_GUI_TAB) - && keyInput.getType() == gcn::KeyInput::PRESSED) + && keyInput.getType() == KeyInput::PRESSED) { if (keyInput.isShiftPressed()) mFocusHandler->tabPrevious(); |