Update CMakeLists.txt - play with openssl
[novacoin.git] / src / qt / qvalidatedlineedit.h
index 9fc026f..66e26be 100644 (file)
@@ -3,13 +3,15 @@
 
 #include <QLineEdit>
 
-// Line edit that can be marked as "invalid". When marked as invalid,
-// it will get a red background until it is focused.
+/** Line edit that can be marked as "invalid" to show input validation feedback. When marked as invalid,
+   it will get a red background until it is focused.
+ */
 class QValidatedLineEdit : public QLineEdit
 {
     Q_OBJECT
 public:
     explicit QValidatedLineEdit(QWidget *parent = 0);
+    void clear();
 
 protected:
     void focusInEvent(QFocusEvent *evt);