summaryrefslogtreecommitdiff
path: root/src/mainwindow.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow.cc')
-rw-r--r--src/mainwindow.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mainwindow.cc b/src/mainwindow.cc
index 60d2dcf..f109a86 100644
--- a/src/mainwindow.cc
+++ b/src/mainwindow.cc
@@ -1,10 +1,9 @@
#include "mainwindow.h"
-#include "sudoku.h"
+#include "solverwindow.h"
MainWindow::MainWindow()
{
- mainwindow_sudoku = new Sudoku();
-
- setCentralWidget(mainwindow_sudoku);
+ SolverWindow *solverwindow = new SolverWindow();
+ setCentralWidget(solverwindow);
}