diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-03-03 18:21:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-03-03 18:21:45 +0300 |
commit | 37241d3f8552e1bdbd4b966fb95d7e9df1546994 (patch) | |
tree | e55aea10d923d85b8eaa4a04a78c8de4aff0f80d /src/gui/gui.cpp | |
parent | 2740b416b99855e0b411b06dce2fc1eb4fa93f2c (diff) | |
download | plus-37241d3f8552e1bdbd4b966fb95d7e9df1546994.tar.gz plus-37241d3f8552e1bdbd4b966fb95d7e9df1546994.tar.bz2 plus-37241d3f8552e1bdbd4b966fb95d7e9df1546994.tar.xz plus-37241d3f8552e1bdbd4b966fb95d7e9df1546994.zip |
Remove 2 from methods name in sdlinput.
Diffstat (limited to 'src/gui/gui.cpp')
-rw-r--r-- | src/gui/gui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index b897655e2..0b0290be4 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -426,7 +426,7 @@ bool Gui::handleKeyInput() while (!mInput->isKeyQueueEmpty()) { - const KeyInput keyInput = guiInput->dequeueKeyInput2(); + const KeyInput keyInput = guiInput->dequeueKeyInput(); // Save modifiers state mShiftPressed = keyInput.isShiftPressed(); @@ -988,7 +988,7 @@ void Gui::handleMouseInput() BLOCK_START("Gui::handleMouseInput") while (!mInput->isMouseQueueEmpty()) { - const MouseInput mouseInput = guiInput->dequeueMouseInput2(); + const MouseInput mouseInput = guiInput->dequeueMouseInput(); if (touchManager.processEvent(mouseInput)) { |