Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@nextcloud.com>2020-08-19 17:32:57 +0300
committerKevin Ottens <ervin@ipsquad.net>2020-08-31 10:14:09 +0300
commit1a0945a973a6c3d831facf36f58f2008668d9693 (patch)
tree4c2aa8796760e0bade5f3a107ba88498473100d3 /src/gui/socketapi.cpp
parent7236af78af07dfb58f2d9edaf105ed94ea2b0f48 (diff)
Enable all the misc clang-tidy check except one
This flagged mostly unused parameters. Didn't enable the misc-non-private-member-variables-in-classes check as we got a lot of those. Hopefully we'll get to fix them at some point but that feels too early and too much work for now. Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
Diffstat (limited to 'src/gui/socketapi.cpp')
-rw-r--r--src/gui/socketapi.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/socketapi.cpp b/src/gui/socketapi.cpp
index 40c93d1f6..bba8e41c0 100644
--- a/src/gui/socketapi.cpp
+++ b/src/gui/socketapi.cpp
@@ -469,6 +469,7 @@ void SocketApi::command_SHARE_MENU_TITLE(const QString &, SocketListener *listen
void SocketApi::command_EDIT(const QString &localFile, SocketListener *listener)
{
+ Q_UNUSED(listener)
auto fileData = FileData::get(localFile);
if (!fileData.folder) {
qCWarning(lcSocketApi) << "Unknown path" << localFile;