summaryrefslogtreecommitdiff
path: root/muse2/awl/lineedit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'muse2/awl/lineedit.cpp')
-rw-r--r--muse2/awl/lineedit.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/muse2/awl/lineedit.cpp b/muse2/awl/lineedit.cpp
new file mode 100644
index 00000000..07d2e49f
--- /dev/null
+++ b/muse2/awl/lineedit.cpp
@@ -0,0 +1,11 @@
+#include <stdio.h>
+#include "lineedit.h"
+
+LineEdit::LineEdit(QWidget *parent) :
+ QLineEdit(parent)
+{
+}
+void LineEdit::focusOutEvent ( QFocusEvent * e )
+{
+ emit returnPressed();
+}