7f1cb19f919f85003c5da3c5e1591d10eb6c56cf
[pierogi] / dialogs / pircreatecommanddialog.cpp
1 #include "pircreatecommanddialog.h"
2 #include "ui_pircreatecommanddialog.h"
3
4 #include "mainwindow.h"
5
6 /*
7 PIRCreateCommandDialog::PIRCreateCommandDialog(QWidget *parent) :
8   QDialog(parent),
9   ui(new Ui::PIRCreateCommandDialog)
10 {
11   ui->setupUi(this);
12 }
13 */
14
15
16 PIRCreateCommandDialog::PIRCreateCommandDialog(
17   MainWindow *mw)
18   : QDialog(mw),
19     ui(new Ui::PIRCreateCommandDialog)
20 {
21   ui->setupUi(this);
22 }
23
24 PIRCreateCommandDialog::~PIRCreateCommandDialog()
25 {
26   delete ui;
27 }