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.

18 lines
235 B

#include "Main.h"
#include "ui_Main.h"
Main::Main(QWidget *parent) :
QDialog(parent),
ui(new Ui::Main)
{
setWindowFlags(Qt::Window);
ui->setupUi(this);
ui->transactions->setHtml("Hello world!");
}
Main::~Main()
{
delete ui;
}