implemented ModEditUI and mapped ModEditUI Buttons for implementation
enabled EditMods button on MainWindowUI added validation check for renaming instances
This commit is contained in:
@ -15,8 +15,11 @@
|
||||
|
||||
#include "modeditwindow.h"
|
||||
#include "ui_modeditwindow.h"
|
||||
#include "instance.h"
|
||||
|
||||
ModEditWindow::ModEditWindow(QWidget *parent) :
|
||||
#include <QDebug>
|
||||
|
||||
ModEditWindow::ModEditWindow(QWidget *parent, Instance* m_inst) :
|
||||
QDialog(parent),
|
||||
ui(new Ui::ModEditWindow)
|
||||
{
|
||||
@ -27,3 +30,8 @@ ModEditWindow::~ModEditWindow()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
|
||||
void ModEditWindow::on_buttonBox_rejected()
|
||||
{
|
||||
close();
|
||||
}
|
Reference in New Issue
Block a user