summaryrefslogtreecommitdiff
path: root/muse2/awl
diff options
context:
space:
mode:
Diffstat (limited to 'muse2/awl')
-rw-r--r--muse2/awl/CMakeLists.txt2
-rw-r--r--muse2/awl/lineedit.cpp11
-rw-r--r--muse2/awl/lineedit.h18
3 files changed, 0 insertions, 31 deletions
diff --git a/muse2/awl/CMakeLists.txt b/muse2/awl/CMakeLists.txt
index 532d0c8d..21772470 100644
--- a/muse2/awl/CMakeLists.txt
+++ b/muse2/awl/CMakeLists.txt
@@ -29,7 +29,6 @@ QT4_WRAP_CPP (awl_mocs
drawbar.h
floatentry.h
knob.h
- lineedit.h
midimeter.h
midimslider.h
midipanentry.h
@@ -65,7 +64,6 @@ file (GLOB awl_source_files
floatentry.cpp
knob.cpp
# ltest.cpp
- lineedit.cpp
midimeter.cpp
midimslider.cpp
midipanentry.cpp
diff --git a/muse2/awl/lineedit.cpp b/muse2/awl/lineedit.cpp
deleted file mode 100644
index 07d2e49f..00000000
--- a/muse2/awl/lineedit.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <stdio.h>
-#include "lineedit.h"
-
-LineEdit::LineEdit(QWidget *parent) :
- QLineEdit(parent)
-{
-}
-void LineEdit::focusOutEvent ( QFocusEvent * e )
-{
- emit returnPressed();
-}
diff --git a/muse2/awl/lineedit.h b/muse2/awl/lineedit.h
deleted file mode 100644
index 4ad6116e..00000000
--- a/muse2/awl/lineedit.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef LINEEDIT_H
-#define LINEEDIT_H
-
-#include <QLineEdit>
-
-class LineEdit : public QLineEdit
-{
- Q_OBJECT
-public:
- explicit LineEdit(QWidget *parent = 0);
- void focusOutEvent ( QFocusEvent * e );
-signals:
-
-public slots:
-
-};
-
-#endif // LINEEDIT_H