mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Return on first disabled item in areAllDisabled
This commit is contained in:
parent
33a3796074
commit
2f594a5130
1 changed files with 2 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue