diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-17 00:09:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-17 00:09:12 +0300 |
commit | e78036b3372e5773fac4207ea48bb61e2fd7873e (patch) | |
tree | f792fc5ecc4bc5a1fd1c3af7cded74229fbfab10 /src/touchactions.cpp | |
parent | e8270acbc5118aabbf10738eb9deee07457ea56d (diff) | |
download | plus-e78036b3372e5773fac4207ea48bb61e2fd7873e.tar.gz plus-e78036b3372e5773fac4207ea48bb61e2fd7873e.tar.bz2 plus-e78036b3372e5773fac4207ea48bb61e2fd7873e.tar.xz plus-e78036b3372e5773fac4207ea48bb61e2fd7873e.zip |
combine mouseinput into one file.
Diffstat (limited to 'src/touchactions.cpp')
-rw-r--r-- | src/touchactions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/touchactions.cpp b/src/touchactions.cpp index a79c14275..d4f7d9f6e 100644 --- a/src/touchactions.cpp +++ b/src/touchactions.cpp @@ -20,10 +20,10 @@ #include "touchactions.h" -#include "mouseinput.h" #include "touchmanager.h" #include "input/inputmanager.h" +#include "input/mouseinput.h" #include "debug.h" @@ -109,7 +109,7 @@ impHandler(padClick) impHandler(padEvents) { - if (mouseInput.getType() == gcn::MouseInput::MOVED) + if (mouseInput.getType() == MouseInput::MOVED) { if (padClicked) moveChar(mouseInput.getX(), mouseInput.getY()); |