2025-08-26 17:26:05 -05:00
|
|
|
// SPDX-FileCopyrightText: 2021 Ernie Pasveer <epasveer@att.net>
|
|
|
|
|
//
|
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
2024-11-10 12:40:43 -06:00
|
|
|
#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);
|
|
|
|
|
}
|
|
|
|
|
|