summaryrefslogtreecommitdiffhomepage
path: root/gui/main-window.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2017-03-17 13:52:23 +0100
committerStanislaw Halik <sthalik@misaki.pl>2017-03-17 13:52:46 +0100
commit4eb8139c8a854a856ce108a0c79a932ab9b6da70 (patch)
treee10c14e81ac6c37e77db7300aac745c38a7f40d3 /gui/main-window.cpp
parent949d847ed9df6d2d2a7931f3f69014aa56a5ab7c (diff)
compat/util: remove our make_unique custom impl
Diffstat (limited to 'gui/main-window.cpp')
-rw-r--r--gui/main-window.cpp2
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();