diff options
Diffstat (limited to 'src/touchmanager.h')
-rw-r--r-- | src/touchmanager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/touchmanager.h b/src/touchmanager.h index 09eaabad5..7e670b1a6 100644 --- a/src/touchmanager.h +++ b/src/touchmanager.h @@ -25,7 +25,7 @@ #include "input/keydata.h" -#include "gui/base/rectangle.hpp" +#include "gui/rectangle.h" #include <string> #include <vector> @@ -45,7 +45,7 @@ const int buttonsCount = 12; struct TouchItem final { TouchItem(const std::string &text0, - const gcn::Rectangle &rect0, const int type0, + const Rectangle &rect0, const int type0, const std::string &eventPressed0, const std::string &eventReleased0, ImageRect *const images0, Image *const icon0, @@ -73,7 +73,7 @@ struct TouchItem final A_DELETE_COPY(TouchItem) std::string text; - gcn::Rectangle rect; + Rectangle rect; int type; std::string eventPressed; std::string eventReleased; |