Bugfixes and Keysets
[pierogi] / dialogs / pircreatecommanddialog.cpp
diff --git a/dialogs/pircreatecommanddialog.cpp b/dialogs/pircreatecommanddialog.cpp
new file mode 100644 (file)
index 0000000..7f1cb19
--- /dev/null
@@ -0,0 +1,27 @@
+#include "pircreatecommanddialog.h"
+#include "ui_pircreatecommanddialog.h"
+
+#include "mainwindow.h"
+
+/*
+PIRCreateCommandDialog::PIRCreateCommandDialog(QWidget *parent) :
+  QDialog(parent),
+  ui(new Ui::PIRCreateCommandDialog)
+{
+  ui->setupUi(this);
+}
+*/
+
+
+PIRCreateCommandDialog::PIRCreateCommandDialog(
+  MainWindow *mw)
+  : QDialog(mw),
+    ui(new Ui::PIRCreateCommandDialog)
+{
+  ui->setupUi(this);
+}
+
+PIRCreateCommandDialog::~PIRCreateCommandDialog()
+{
+  delete ui;
+}