Fix compiler warning
authorOlivier Goffart <ogoffart@woboq.com>
Sat, 20 Oct 2018 13:13:23 +0000 (15:13 +0200)
committerKevin Ottens <kevin.ottens@nextcloud.com>
Tue, 15 Dec 2020 09:58:14 +0000 (10:58 +0100)
src/common/utility.cpp

index 1225b6e4a3197ae121b2005b0e7a6eb5f305072d..e7ed681c52a34edf2f699fe8c77c061a2668eb7c 100644 (file)
@@ -202,6 +202,7 @@ bool Utility::hasSystemLaunchOnStartup(const QString &appName)
 #if defined(Q_OS_WIN)
     return hasSystemLaunchOnStartup_private(appName);
 #else
+    Q_UNUSED(appName)
     return false;
 #endif
 }