diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-03-29 01:36:33 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-03-29 01:36:33 +0300 |
commit | 50e6f52f9f326d09ee5a2d0f8e8c2235c5e9cd22 (patch) | |
tree | 621b805e2fa1f20ccbcbb98e652df784677e63c5 /src/gui/setup_touch.cpp | |
parent | ffcc519acbc3b4dc4e5d46bc2f70aa0dcf516131 (diff) | |
download | plus-50e6f52f9f326d09ee5a2d0f8e8c2235c5e9cd22.tar.gz plus-50e6f52f9f326d09ee5a2d0f8e8c2235c5e9cd22.tar.bz2 plus-50e6f52f9f326d09ee5a2d0f8e8c2235c5e9cd22.tar.xz plus-50e6f52f9f326d09ee5a2d0f8e8c2235c5e9cd22.zip |
fix some warnings.
Diffstat (limited to 'src/gui/setup_touch.cpp')
-rw-r--r-- | src/gui/setup_touch.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/setup_touch.cpp b/src/gui/setup_touch.cpp index 037e2bb20..8fa3c5a7f 100644 --- a/src/gui/setup_touch.cpp +++ b/src/gui/setup_touch.cpp @@ -89,19 +89,19 @@ Setup_Touch::Setup_Touch(const Widget2 *const widget) : new SetupItemDropDown(_("Buttons size"), "", "screenButtonsSize", this, "screenButtonsSizeEvent", mSizeList, 100); - new SetupActionDropDown(strprintf(_("Button %u action"), 1), "", + new SetupActionDropDown(strprintf(_("Button %u action"), 1u), "", "screenActionButton0", this, "screenActionButton0Event", mActionsList, 250); - new SetupActionDropDown(strprintf(_("Button %u action"), 2), "", + new SetupActionDropDown(strprintf(_("Button %u action"), 2u), "", "screenActionButton1", this, "screenActionButton1Event", mActionsList, 250); - new SetupActionDropDown(strprintf(_("Button %u action"), 3), "", + new SetupActionDropDown(strprintf(_("Button %u action"), 3u), "", "screenActionButton2", this, "screenActionButton2Event", mActionsList, 250); - new SetupActionDropDown(strprintf(_("Button %u action"), 4), "", + new SetupActionDropDown(strprintf(_("Button %u action"), 4u), "", "screenActionButton3", this, "screenActionButton3Event", mActionsList, 250); |