You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
358 B
23 lines
358 B
|
3 years ago
|
#include "addtradedialog.h"
|
||
|
|
#include "ui_addtradedialog.h"
|
||
|
|
#include <QMessageBox>
|
||
|
|
#include <QDebug>
|
||
|
|
|
||
|
|
AddTradeDialog::AddTradeDialog(QWidget *parent) :
|
||
|
|
QDialog(parent),
|
||
|
|
ui(new Ui::AddTradeDialog)
|
||
|
|
{
|
||
|
|
ui->setupUi(this);
|
||
|
|
}
|
||
|
|
|
||
|
|
AddTradeDialog::~AddTradeDialog()
|
||
|
|
{
|
||
|
|
delete ui;
|
||
|
|
}
|
||
|
|
|
||
|
|
void AddTradeDialog::on_pushButton_OK_clicked()
|
||
|
|
{
|
||
|
|
this->accept();
|
||
|
|
}
|
||
|
|
|