Editor dialogs and windows
This commit is contained in:
parent
0622e795e4
commit
1bda2c4047
22 changed files with 904 additions and 0 deletions
14
cargoeditdialog.cpp
Normal file
14
cargoeditdialog.cpp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#include "cargoeditdialog.h"
|
||||
#include "ui_cargoeditdialog.h"
|
||||
|
||||
CargoEditDialog::CargoEditDialog(QWidget *parent) :
|
||||
QDialog(parent),
|
||||
ui(new Ui::CargoEditDialog)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
CargoEditDialog::~CargoEditDialog()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue