diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-17 20:38:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-17 20:38:57 +0300 |
commit | 22f12b5d47cf35cf4196156febc68d6eb78ef3f2 (patch) | |
tree | 55429423878e31b8a86b2bcf36547a93b7bc880f /src/gui/widgets/setuptouchitem.h | |
parent | b52b013d0edc3be56566aa4fb21c5cde8a8997f5 (diff) | |
download | plus-22f12b5d47cf35cf4196156febc68d6eb78ef3f2.tar.gz plus-22f12b5d47cf35cf4196156febc68d6eb78ef3f2.tar.bz2 plus-22f12b5d47cf35cf4196156febc68d6eb78ef3f2.tar.xz plus-22f12b5d47cf35cf4196156febc68d6eb78ef3f2.zip |
add restrict into setuptouchitem.
Diffstat (limited to 'src/gui/widgets/setuptouchitem.h')
-rw-r--r-- | src/gui/widgets/setuptouchitem.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/gui/widgets/setuptouchitem.h b/src/gui/widgets/setuptouchitem.h index 285e0e02f..65ad48642 100644 --- a/src/gui/widgets/setuptouchitem.h +++ b/src/gui/widgets/setuptouchitem.h @@ -46,20 +46,20 @@ class TouchActionsModel final : public NamesModel class SetupActionDropDown final : public SetupItem { public: - SetupActionDropDown(const std::string &text, - const std::string &description, - const std::string &keyName, - SetupTabScroll *const parent, - const std::string &eventName, - TouchActionsModel *const model, + SetupActionDropDown(const std::string &restrict text, + const std::string &restrict description, + const std::string &restrict keyName, + SetupTabScroll *restrict const parent, + const std::string &restrict eventName, + TouchActionsModel *restrict const model, const int width, const bool mainConfig = true); - SetupActionDropDown(const std::string &text, - const std::string &description, - const std::string &keyName, - SetupTabScroll *const parent, - const std::string &eventName, - TouchActionsModel *const model, + SetupActionDropDown(const std::string &restrict text, + const std::string &restrict description, + const std::string &restrict keyName, + SetupTabScroll *restrict const parent, + const std::string &restrict eventName, + TouchActionsModel *restrict const model, const int width, const std::string &def, const bool mainConfig = true); |