mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-06-30 21:09:15 +02:00
Fixed broken app close action
This commit is contained in:
@ -161,7 +161,7 @@ void GUI::createActions()
|
|||||||
// General actions
|
// General actions
|
||||||
_exitAction = new QAction(QIcon(QPixmap(QUIT_ICON)), tr("Quit"), this);
|
_exitAction = new QAction(QIcon(QPixmap(QUIT_ICON)), tr("Quit"), this);
|
||||||
_exitAction->setShortcut(QKeySequence::Quit);
|
_exitAction->setShortcut(QKeySequence::Quit);
|
||||||
connect(_exitAction, SIGNAL(triggered()), this, SLOT(closeAll()));
|
connect(_exitAction, SIGNAL(triggered()), this, SLOT(close()));
|
||||||
|
|
||||||
// Help & About
|
// Help & About
|
||||||
_dataSourcesAction = new QAction(tr("Data sources"), this);
|
_dataSourcesAction = new QAction(tr("Data sources"), this);
|
||||||
|
Reference in New Issue
Block a user