#include "editorwindow.h" #include "ui_editorwindow.h" EditorWindow::EditorWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::EditorWindow) { ui->setupUi(this); } EditorWindow::~EditorWindow() { delete ui; } void EditorWindow::on_openGLWidget_destroyed() { }