mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-23 06:38:07 +00:00
fix(main): missing ;
This commit is contained in:
parent
9b78b2e124
commit
be082fa20f
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue