aboutsummaryrefslogtreecommitdiffstats
path: root/editor/editorwindow.cpp
blob: 35eeeb31172415573d2593cd185c3887a418eaed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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()
{
}