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/pushbutton.h | |
parent | 22de7bf19fb6fcce8d11c0e01afdfafa2a8c00d6 (diff) |
migrated all widgets to use QDomNodes; Implemented the getName functionality
Diffstat (limited to 'client/widgets/pushbutton.h')
-rw-r--r-- | client/widgets/pushbutton.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/widgets/pushbutton.h b/client/widgets/pushbutton.h index 3fc334f..a64568f 100644 --- a/client/widgets/pushbutton.h +++ b/client/widgets/pushbutton.h @@ -30,7 +30,7 @@ #include "widget.h" #include <QPushButton> #include <QWidget> -//#include <QValidator> +#include <QDomNode> class PushButton : public QPushButton, public Widget { @@ -38,10 +38,10 @@ class PushButton : public QPushButton, public Widget Q_OBJECT public: - PushButton(QWidget *parent, QString caption = "*", QString type = "*"); - QString getValue(); + PushButton(QDomNode node); public slots: + QString getValue(); private: |