diff options
author | senator <senator> | 2007-07-18 07:52:47 +0000 |
---|---|---|
committer | senator <senator> | 2007-07-18 07:52:47 +0000 |
commit | 37be3663a7bcd8c689a63ad5b2c4b40df2d9e73b (patch) | |
tree | 5784494e0b38b36f0c8ec3756913b16b5ae184f8 /client/widgets/lineedit.h | |
parent | dd630367a769784e24a41afbf9b36e8ec45512d5 (diff) |
added more dummy widgets and a general widget for use with vector
Diffstat (limited to 'client/widgets/lineedit.h')
-rw-r--r-- | client/widgets/lineedit.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/client/widgets/lineedit.h b/client/widgets/lineedit.h index bf66d06..551f08b 100644 --- a/client/widgets/lineedit.h +++ b/client/widgets/lineedit.h @@ -27,11 +27,12 @@ #ifndef __PRACRO_LINEEDIT_H__ #define __PRACRO_LINEEDIT_H__ +#include "widget.h" #include <QLineEdit> #include <QWidget> #include <QValidator> -class LineEdit : public QLineEdit +class LineEdit : public QLineEdit, public Widget { Q_OBJECT @@ -42,6 +43,7 @@ public: public slots: void changed(QString text); + QString getValue(); private: QValidator *validator; |