summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2010-05-24 17:14:38 (GMT)
committerKevin Smith <git@kismith.co.uk>2010-05-24 18:49:25 (GMT)
commitff464cee022c75258405ab01ebeedf7bc1c79aa0 (patch)
treecf580126009cb1b1af9d94178363c5460f2be632 /Swift/QtUI/QtStatusWidget.h
parent688175f8bb6a4ae2c6589b5faabf08e3dd15e2f1 (diff)
downloadswift-ff464cee022c75258405ab01ebeedf7bc1c79aa0.zip
swift-ff464cee022c75258405ab01ebeedf7bc1c79aa0.tar.bz2
Escape to close status edit.
Resolves: #363
Diffstat (limited to 'Swift/QtUI/QtStatusWidget.h')
-rw-r--r--Swift/QtUI/QtStatusWidget.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Swift/QtUI/QtStatusWidget.h b/Swift/QtUI/QtStatusWidget.h
index 4e6aa20..7317ea5 100644
--- a/Swift/QtUI/QtStatusWidget.h
+++ b/Swift/QtUI/QtStatusWidget.h
@@ -16,11 +16,11 @@
class QComboBox;
class QLabel;
class QStackedWidget;
-class QLineEdit;
class QListWidget;
class QListWidgetItem;
namespace Swift {
+ class QtLineEdit;
class QtStatusWidget : public QWidget {
Q_OBJECT
public:
@@ -47,7 +47,7 @@ namespace Swift {
QStackedWidget* stack_;
QLabel* statusIcon_;
QLabel* statusTextLabel_;
- QLineEdit* statusEdit_;
+ QtLineEdit* statusEdit_;
QString statusText_;
QMap<StatusShow::Type, QIcon> icons_;
StatusShow::Type selectedStatusType_;