WSJT-X/logqso.cpp
Joe Taylor 64f5c2d92d 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
2013-03-21 17:22:32 +00:00

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();
}