mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2026-06-08 00:44:39 -04:00
Starrting to implement a confirmation dialog for LogQSL.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3067 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
+26
@@ -0,0 +1,26 @@
|
||||
#include "logqso.h"
|
||||
#include "ui_logqso.h"
|
||||
#include <QDebug>
|
||||
|
||||
LogQSO::LogQSO(QWidget *parent) :
|
||||
QDialog(parent),
|
||||
ui(new Ui::LogQSO)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
LogQSO::~LogQSO()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
|
||||
void LogQSO::initLogQSO()
|
||||
{
|
||||
qDebug() << "A";
|
||||
}
|
||||
|
||||
void LogQSO::accept()
|
||||
{
|
||||
qDebug() << "Z";
|
||||
QDialog::accept();
|
||||
}
|
||||
Reference in New Issue
Block a user