summaryrefslogtreecommitdiff
path: root/muse2/awl/lineedit.cpp
blob: 07d2e49f31a250861fb2331cb7ca91e3587ec215 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include "lineedit.h"

LineEdit::LineEdit(QWidget *parent) :
    QLineEdit(parent)
{
}
void LineEdit::focusOutEvent ( QFocusEvent * e )
{
    emit returnPressed();
}