mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-04 16:31:17 -05:00
27 lines
348 B
C++
27 lines
348 B
C++
|
#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();
|
||
|
}
|