diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-17 19:48:19 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-17 19:48:19 +0300 |
commit | e5ed738d09700004362bf1344d8f331279903d29 (patch) | |
tree | 538f4200585178b84eae0ab08f59605ccd21e699 /src/gui/widgets/button.h | |
parent | 04ac16fc83719870bdad57eff409dc5db9502fe0 (diff) | |
download | plus-e5ed738d09700004362bf1344d8f331279903d29.tar.gz plus-e5ed738d09700004362bf1344d8f331279903d29.tar.bz2 plus-e5ed738d09700004362bf1344d8f331279903d29.tar.xz plus-e5ed738d09700004362bf1344d8f331279903d29.zip |
add restrict into button.
Diffstat (limited to 'src/gui/widgets/button.h')
-rw-r--r-- | src/gui/widgets/button.h | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/gui/widgets/button.h b/src/gui/widgets/button.h index 15567ea52..2e233cee5 100644 --- a/src/gui/widgets/button.h +++ b/src/gui/widgets/button.h @@ -57,7 +57,8 @@ class Button final : public gcn::Button, * adds the given action listener. */ Button(const Widget2 *const widget, - const std::string &caption, const std::string &actionEventId, + const std::string &restrict caption, + const std::string &restrict actionEventId, gcn::ActionListener *const listener); /** @@ -65,7 +66,8 @@ class Button final : public gcn::Button, * adds the given action listener. */ Button(const Widget2 *const widget, - const std::string &caption, const std::string &imageName, + const std::string &restrict caption, + const std::string &restrict imageName, const int imageWidth, const int imageHeight, const std::string &actionEventId, gcn::ActionListener *const listener); @@ -74,17 +76,20 @@ class Button final : public gcn::Button, * Constructor, sets the caption of the button to the given string and * adds the given action listener. */ - Button(const Widget2 *const widget, const std::string &imageName, + Button(const Widget2 *const widget, + const std::string &restrict imageName, const int imageWidth, const int imageHeight, - const std::string &actionEventId, + const std::string &restrict actionEventId, gcn::ActionListener *const listener); /** * Constructor, sets the caption of the button to the given string and * adds the given action listener. */ - Button(const Widget2 *const widget, const std::string &imageName, - const std::string &caption, const std::string &actionEventId, + Button(const Widget2 *const widget, + const std::string &restrict imageName, + const std::string &restrict caption, + const std::string &restrict actionEventId, gcn::ActionListener *const listener); A_DELETE_COPY(Button) |