From 35244bec7574b1e95fc0c7d51b96bf634673b391 Mon Sep 17 00:00:00 2001 From: Marius P Date: Sat, 9 Jul 2022 15:40:28 +0300 Subject: [PATCH] dolphintabwidget.cpp piority of boolean operators Fix PVS-Studio issue "warning: V648 Priority of the '&&' operation is higher than that of the '||' operation.". Fix clangd issue. --- src/dolphintabwidget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dolphintabwidget.cpp b/src/dolphintabwidget.cpp index de7a18db36..8eac9519d2 100644 --- a/src/dolphintabwidget.cpp +++ b/src/dolphintabwidget.cpp @@ -490,13 +490,13 @@ QPair DolphinTabWidget::indexByUrl(const QUrl& url, ChildUrlBehavior do { const auto tabPage = tabPageAt(i); if (tabPage->primaryViewContainer()->url() == url || - childUrlBehavior == ReturnIndexForOpenedParentAlso && tabPage->primaryViewContainer()->url().isParentOf(url)) { + (childUrlBehavior == ReturnIndexForOpenedParentAlso && tabPage->primaryViewContainer()->url().isParentOf(url))) { return qMakePair(i, true); } if (tabPage->splitViewEnabled() && (url == tabPage->secondaryViewContainer()->url() || - childUrlBehavior == ReturnIndexForOpenedParentAlso && tabPage->secondaryViewContainer()->url().isParentOf(url))) { + (childUrlBehavior == ReturnIndexForOpenedParentAlso && tabPage->secondaryViewContainer()->url().isParentOf(url)))) { return qMakePair(i, false); }