From 9da82a978ceaa689675d97fba1c1f187f7be3f34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Thu, 24 Mar 2016 19:16:26 +0100 Subject: [PATCH] Fixed broken app close action --- src/gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui.cpp b/src/gui.cpp index ae0208ef..fe68eafe 100644 --- a/src/gui.cpp +++ b/src/gui.cpp @@ -161,7 +161,7 @@ void GUI::createActions() // General actions _exitAction = new QAction(QIcon(QPixmap(QUIT_ICON)), tr("Quit"), this); _exitAction->setShortcut(QKeySequence::Quit); - connect(_exitAction, SIGNAL(triggered()), this, SLOT(closeAll())); + connect(_exitAction, SIGNAL(triggered()), this, SLOT(close())); // Help & About _dataSourcesAction = new QAction(tr("Data sources"), this);