fixed some heavy pointermistakes
This commit is contained in:
14
training.cpp
Normal file
14
training.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#include "training.h"
|
||||
#include "ui_training.h"
|
||||
|
||||
Training::Training(QWidget *parent) :
|
||||
QMainWindow(parent),
|
||||
ui(new Ui::Training)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
Training::~Training()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
Reference in New Issue
Block a user