From: Olivier Goffart Date: Sat, 20 Oct 2018 13:13:23 +0000 (+0200) Subject: Fix compiler warning X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~21^2~468^2~454 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b820e4680570b0f01086f374754f91da9a6a1ab2;p=nextcloud-desktop.git Fix compiler warning --- 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 }