mirror of
https://github.com/epasveer/seer.git
synced 2026-08-31 01:20:45 +08:00
13 lines
449 B
C++
13 lines
449 B
C++
|
|
#include "SeerHistoryLineEdit.h"
|
||
|
|
|
||
|
|
SeerHistoryLineEdit::SeerHistoryLineEdit (const QString& contents, QWidget* parent) : QHistoryLineEdit(contents, parent) {
|
||
|
|
|
||
|
|
QObject::connect(this, &QHistoryLineEdit::lostFocus, this, &QHistoryLineEdit::execute);
|
||
|
|
}
|
||
|
|
|
||
|
|
SeerHistoryLineEdit::SeerHistoryLineEdit (QWidget* parent) : QHistoryLineEdit(parent) {
|
||
|
|
|
||
|
|
QObject::connect(this, &QHistoryLineEdit::lostFocus, this, &QHistoryLineEdit::execute);
|
||
|
|
}
|
||
|
|
|