projects
/
nextcloud-desktop.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
35967fc
)
Fix compiler warning
author
Olivier Goffart
<ogoffart@woboq.com>
Sat, 20 Oct 2018 13:13:23 +0000
(15:13 +0200)
committer
Kevin Ottens
<kevin.ottens@nextcloud.com>
Tue, 15 Dec 2020 09:58:14 +0000
(10:58 +0100)
src/common/utility.cpp
patch
|
blob
|
history
diff --git
a/src/common/utility.cpp
b/src/common/utility.cpp
index 1225b6e4a3197ae121b2005b0e7a6eb5f305072d..e7ed681c52a34edf2f699fe8c77c061a2668eb7c 100644
(file)
--- 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
}