diff options
Diffstat (limited to 'gui/main-window.cpp')
-rw-r--r-- | gui/main-window.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/main-window.cpp b/gui/main-window.cpp index 8a04cab4..7efec930 100644 --- a/gui/main-window.cpp +++ b/gui/main-window.cpp @@ -686,7 +686,7 @@ void MainWindow::ensure_tray() { if (!tray) { - tray = make_unique<QSystemTrayIcon>(this); + tray = std::make_unique<QSystemTrayIcon>(this); tray->setIcon(QIcon(":/images/facetracknoir.png")); tray->setContextMenu(&tray_menu); tray->show(); |