Commit be082fa2 authored by Ronan Abhamon's avatar Ronan Abhamon

fix(main): missing ;

parent 9b78b2e1
...@@ -17,7 +17,7 @@ void createSystemTrayIcon (QQmlApplicationEngine &engine) { ...@@ -17,7 +17,7 @@ void createSystemTrayIcon (QQmlApplicationEngine &engine) {
QAction *quitAction = new QAction(QObject::tr("Quit"), root); QAction *quitAction = new QAction(QObject::tr("Quit"), root);
root->connect(quitAction, &QAction::triggered, qApp, &QCoreApplication::quit); 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())); root->connect(restoreAction, SIGNAL(triggered()), root, SLOT(showNormal()));
menu->addAction(restoreAction); menu->addAction(restoreAction);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment