From b820e4680570b0f01086f374754f91da9a6a1ab2 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Sat, 20 Oct 2018 15:13:23 +0200 Subject: [PATCH] Fix compiler warning --- src/common/utility.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/utility.cpp b/src/common/utility.cpp index 1225b6e4a..e7ed681c5 100644 --- a/src/common/utility.cpp +++ b/src/common/utility.cpp @@ -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 } -- 2.30.2