summaryrefslogtreecommitdiff
path: root/src/mainwindow.cc
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2012-06-05 18:50:44 +0000
committerStijn Buys <ingar@osirion.org>2012-06-05 18:50:44 +0000
commit168d6e5763685b57c2ddd444209374c37bc5fdec (patch)
treed761a7284b48c9263ff235dd0ceb1638c28a4135 /src/mainwindow.cc
parent42cb020233b6635f2d06b7f7b533a0ee4f85f4fa (diff)
Added solverwindow and sidebar buttons,
added Sudoku value container class.
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);
}