diff options
author | senator <senator> | 2007-07-25 09:11:31 +0000 |
---|---|---|
committer | senator <senator> | 2007-07-25 09:11:31 +0000 |
commit | ce667bf4b2f3de7aab677ac7e7f23bc72d3db80f (patch) | |
tree | 760a18ca48e59274553ca6c211c08770f031ad56 /client/widgets/checkbox.h | |
parent | 22de7bf19fb6fcce8d11c0e01afdfafa2a8c00d6 (diff) |
migrated all widgets to use QDomNodes; Implemented the getName functionality
Diffstat (limited to 'client/widgets/checkbox.h')
-rw-r--r-- | client/widgets/checkbox.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/widgets/checkbox.h b/client/widgets/checkbox.h index df59014..94905f2 100644 --- a/client/widgets/checkbox.h +++ b/client/widgets/checkbox.h @@ -28,13 +28,14 @@ #define __PRACRO_CHECKBOX_H__ #include "widget.h" +#include <QDomNode> #include <QCheckBox> class CheckBox : public Widget, public QCheckBox { public: - CheckBox(QWidget *parent); + CheckBox(QDomNode node); public slots: QString getValue(); |