diff options
Diffstat (limited to 'client/widgets/lineedit.h')
-rw-r--r-- | client/widgets/lineedit.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/client/widgets/lineedit.h b/client/widgets/lineedit.h index 99574c2..faea440 100644 --- a/client/widgets/lineedit.h +++ b/client/widgets/lineedit.h @@ -34,19 +34,15 @@ class LineEdit : public QLineEdit, public Widget { - Q_OBJECT - public: - LineEdit(QDomNode node); - bool isValid(); + LineEdit(QDomNode &node); public slots: - void changed(QString text); + void changed(); QString getValue(); private: - QRegExp rx; bool valid; }; |