diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-20 02:37:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-20 13:55:43 +0300 |
commit | 015b14f8e60d64da2999da9c753af62ec1ffdf72 (patch) | |
tree | 5a96c0573d7065fc4a3c87bf727c0645946c1222 /src/gui/widgets/radiobutton.h | |
parent | b6b4ea19929e7e67d987041aa129366f4fed3a6d (diff) | |
download | plus-015b14f8e60d64da2999da9c753af62ec1ffdf72.tar.gz plus-015b14f8e60d64da2999da9c753af62ec1ffdf72.tar.bz2 plus-015b14f8e60d64da2999da9c753af62ec1ffdf72.tar.xz plus-015b14f8e60d64da2999da9c753af62ec1ffdf72.zip |
Add palette inheritance to radiobutton class.
Diffstat (limited to 'src/gui/widgets/radiobutton.h')
-rw-r--r-- | src/gui/widgets/radiobutton.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/widgets/radiobutton.h b/src/gui/widgets/radiobutton.h index a511a806f..8607c891b 100644 --- a/src/gui/widgets/radiobutton.h +++ b/src/gui/widgets/radiobutton.h @@ -42,8 +42,8 @@ class RadioButton final : public gcn::RadioButton, /** * Constructor. */ - RadioButton(const std::string &caption, const std::string &group, - const bool marked = false); + RadioButton(const Widget2 *const widget, const std::string &caption, + const std::string &group, const bool marked = false); A_DELETE_COPY(RadioButton) |