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

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2021-04-28 18:15:28 +0300
committerHannah von Reth <vonreth@kde.org>2021-05-18 12:19:35 +0300
commit54159cb09bdf00dd9a183c81b2e4ae4caca3f19b (patch)
tree3006ba2ab8c6b5c93209e4591612eab052dc1bf1 /src/gui/activitywidget.cpp
parent9e7358ce29b8384837f04a1c68ac152a488d9d7e (diff)
Make clazy a bit more happy
Diffstat (limited to 'src/gui/activitywidget.cpp')
-rw-r--r--src/gui/activitywidget.cpp19
1 files changed, 9 insertions, 10 deletions
diff --git a/src/gui/activitywidget.cpp b/src/gui/activitywidget.cpp
index e5e49d085..dcedb337a 100644
--- a/src/gui/activitywidget.cpp
+++ b/src/gui/activitywidget.cpp
@@ -97,7 +97,7 @@ ActivityWidget::ActivityWidget(QWidget *parent)
showLabels();
}
- for (const auto widget : _widgetForNotifId) {
+ for (const auto widget : qAsConst(_widgetForNotifId)) {
if (widget->activity().uuid() == ast->account()->uuid()) {
scheduleWidgetToRemove(widget);
}
@@ -313,16 +313,15 @@ void ActivityWidget::slotBuildNotificationDisplay(const ActivityList &list)
const auto accId = list.first().uuid();
QList<Activity::Identifier> strayCats;
- for (const auto &id : _widgetForNotifId.keys()) {
- NotificationWidget *widget = _widgetForNotifId[id];
+ for (auto it = _widgetForNotifId.cbegin(); it != _widgetForNotifId.cend(); ++it) {
bool found = false;
// do not mark widgets of other accounts to delete.
- if (widget->activity().uuid() != accId) {
+ if (it.value()->activity().uuid() != accId) {
continue;
}
for (const auto &activity : list) {
- if (activity.id() == id) {
+ if (activity.id() == it.key()) {
// found an activity
found = true;
break;
@@ -330,7 +329,7 @@ void ActivityWidget::slotBuildNotificationDisplay(const ActivityList &list)
}
if (!found) {
// the activity does not exist any more.
- strayCats.append(id);
+ strayCats.append(it.key());
}
}
@@ -376,10 +375,10 @@ void ActivityWidget::slotSendNotificationRequest(const QString &accountName, con
qCInfo(lcActivity) << "Server Notification Request " << verb << link << "on account" << accountName;
NotificationWidget *theSender = qobject_cast<NotificationWidget *>(sender());
- const QStringList validVerbs = QStringList() << "GET"
- << "PUT"
- << "POST"
- << "DELETE";
+ const QStringList validVerbs = { QStringLiteral("GET"),
+ QStringLiteral("PUT"),
+ QStringLiteral("POST"),
+ QStringLiteral("DELETE") };
if (validVerbs.contains(verb)) {
AccountStatePtr acc = AccountManager::instance()->account(accountName);