summaryrefslogtreecommitdiff
path: root/src/mainwindow.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow.cc')
-rw-r--r--src/mainwindow.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/mainwindow.cc b/src/mainwindow.cc
index 4f252d3..5a80459 100644
--- a/src/mainwindow.cc
+++ b/src/mainwindow.cc
@@ -21,7 +21,7 @@ void MainWindow::initActions()
action_new = new QAction(tr("&New"), this);
action_new->setShortcuts(QKeySequence::New);
action_new->setStatusTip(tr("Start a new game"));
- connect(action_new, SIGNAL(triggered()), mainwindow_solverwindow, SLOT(clear()));
+ connect(action_new, SIGNAL(triggered()), this, SLOT(doNew()));
// Game -> Load
action_load = new QAction(tr("&Load..."), this);
@@ -113,6 +113,12 @@ void MainWindow::updateTitle()
}
}
+void MainWindow::doNew()
+{
+ mainwindow_solverwindow->clear();
+ updateTitle();
+}
+
void MainWindow::doSave()
{
mainwindow_solverwindow->save();