Return on first disabled item in areAllDisabled

This commit is contained in:
Alexey Mostovoy 2025-03-04 14:04:42 +03:00 committed by GitHub
parent 33a3796074
commit 2f594a5130
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -150,14 +150,13 @@ void BrowserAccessControlDialog::selectionChanged()
bool BrowserAccessControlDialog::areAllDisabled() const bool BrowserAccessControlDialog::areAllDisabled() const
{ {
auto areAllDisabled = true;
for (const auto& item : getAllItems()) { for (const auto& item : getAllItems()) {
if (item->flags() != Qt::NoItemFlags) { if (item->flags() != Qt::NoItemFlags) {
areAllDisabled = false; return false;
} }
} }
return areAllDisabled; return true;
} }
QList<QTableWidgetItem*> BrowserAccessControlDialog::getAllItems() const QList<QTableWidgetItem*> BrowserAccessControlDialog::getAllItems() const