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/label.h | |
parent | 22de7bf19fb6fcce8d11c0e01afdfafa2a8c00d6 (diff) |
migrated all widgets to use QDomNodes; Implemented the getName functionality
Diffstat (limited to 'client/widgets/label.h')
-rw-r--r-- | client/widgets/label.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/client/widgets/label.h b/client/widgets/label.h index 78376dd..5393992 100644 --- a/client/widgets/label.h +++ b/client/widgets/label.h @@ -27,11 +27,12 @@ #ifndef __PRACRO_LABEL_H__ #define __PRACRO_LABEL_H__ +#include "widget.h" #include <QWidget> #include <QLabel> #include <QDomNode> -class Label : public QLabel +class Label : public QLabel, public Widget { Q_OBJECT @@ -40,6 +41,7 @@ public: Label(QDomNode node); public slots: + QString getValue(); private: |