aboutsummaryrefslogtreecommitdiffstats
path: root/editor/editorwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/editorwindow.cpp')
-rw-r--r--editor/editorwindow.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/editor/editorwindow.cpp b/editor/editorwindow.cpp
deleted file mode 100644
index aad84612..00000000
--- a/editor/editorwindow.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-/* ----------------------------------------------------------------------------
- * /home/yannherklotz/Github/YAGE/editor/editorwindow.cpp
- *
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
- * MIT License, see LICENSE file for more details.
- * ----------------------------------------------------------------------------
- */
-
-#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()
-{
-}