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/tray
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/tray')
-rw-r--r--src/gui/tray/ActivityListModel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/tray/ActivityListModel.cpp b/src/gui/tray/ActivityListModel.cpp
index ddfbd6fcd..eac45232c 100644
--- a/src/gui/tray/ActivityListModel.cpp
+++ b/src/gui/tray/ActivityListModel.cpp
@@ -35,7 +35,7 @@ namespace OCC {
Q_LOGGING_CATEGORY(lcActivity, "nextcloud.gui.activity", QtInfoMsg)
ActivityListModel::ActivityListModel(AccountState *accountState, QObject *parent)
- : QAbstractListModel()
+ : QAbstractListModel(parent)
, _accountState(accountState)
{
}