diff options
author | deva <deva> | 2008-06-30 11:47:05 +0000 |
---|---|---|
committer | deva <deva> | 2008-06-30 11:47:05 +0000 |
commit | 1c190bfef95d9c48e10bd8e2168692c84b4b4558 (patch) | |
tree | cc1e73d3e34313be71cf523d2f8f6404403c55f5 /client/widgets/radiobutton.h | |
parent | 5151bc32413efa8d34a21be21fa10f3bf62517c2 (diff) |
Added setValue and cleaned up the code in general.
Diffstat (limited to 'client/widgets/radiobutton.h')
-rw-r--r-- | client/widgets/radiobutton.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/widgets/radiobutton.h b/client/widgets/radiobutton.h index 66c971e..d0cf149 100644 --- a/client/widgets/radiobutton.h +++ b/client/widgets/radiobutton.h @@ -36,13 +36,13 @@ class RadioButton : public QRadioButton { public: - RadioButton(QDomNode &node, bool radio_bool); + RadioButton(QDomNode &node); public slots: QString getValue(); private: - QString radio_value; + QString value; }; |