fix(main): missing ;

This commit is contained in:
Ronan Abhamon 2016-09-16 17:18:32 +02:00
parent 9b78b2e124
commit be082fa20f

View file

@ -17,7 +17,7 @@ void createSystemTrayIcon (QQmlApplicationEngine &engine) {
QAction *quitAction = new QAction(QObject::tr("Quit"), root);
root->connect(quitAction, &QAction::triggered, qApp, &QCoreApplication::quit);
QAction *restoreAction = new QAction(QObject::tr("Restore")), root);
QAction *restoreAction = new QAction(QObject::tr("Restore"), root);
root->connect(restoreAction, SIGNAL(triggered()), root, SLOT(showNormal()));
menu->addAction(restoreAction);