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:
Joe Taylor
2013-03-21 17:22:32 +00:00
parent 5f02b1d64a
commit e1abaadfc3
5 changed files with 657 additions and 4 deletions
+26
View File
@@ -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();
}