summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-10-19 13:13:39 +0300
committerAndrei Karas <akaras@inbox.ru>2013-10-19 15:12:22 +0300
commite4a246d462e6fe36b73f096a34acb0c8fb14aa88 (patch)
tree0f57d53c12b5028e400d5cb4ea896f473ff55cc8 /src
parente4d34f9e3f5b2068be1a8137c75a571e9da42cda (diff)
downloadplus-e4a246d462e6fe36b73f096a34acb0c8fb14aa88.tar.gz
plus-e4a246d462e6fe36b73f096a34acb0c8fb14aa88.tar.bz2
plus-e4a246d462e6fe36b73f096a34acb0c8fb14aa88.tar.xz
plus-e4a246d462e6fe36b73f096a34acb0c8fb14aa88.zip
fix const in definition in touchmanager.
Diffstat (limited to 'src')
-rw-r--r--src/touchmanager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/touchmanager.h b/src/touchmanager.h
index 0e8158d79..37cba8eee 100644
--- a/src/touchmanager.h
+++ b/src/touchmanager.h
@@ -116,7 +116,7 @@ class TouchManager final : public ConfigListener
const std::string &imageName,
const std::string &text,
int x, int y, const int width, const int height,
- int type, const std::string &eventPressed,
+ const int type, const std::string &eventPressed,
const std::string &eventReleased,
const TouchFuncPtr fAll = nullptr,
const TouchFuncPtr fPressed = nullptr,