mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Turn two for loops into Q_FOREACH.
This commit is contained in:
parent
4b3bee6400
commit
701013baab
2 changed files with 6 additions and 6 deletions
|
@ -299,12 +299,12 @@ QMimeData* GroupModel::mimeData(const QModelIndexList& indexes) const
|
|||
|
||||
QSet<Group*> seenGroups;
|
||||
|
||||
for (int i = 0; i < indexes.size(); i++) {
|
||||
if (!indexes[i].isValid()) {
|
||||
Q_FOREACH (const QModelIndex& index, indexes) {
|
||||
if (!index.isValid()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
Group* group = groupFromIndex(indexes[i]);
|
||||
Group* group = groupFromIndex(index);
|
||||
if (!seenGroups.contains(group)) {
|
||||
// make sure we don't add groups multiple times when we get indexes
|
||||
// with the same row but different columns
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue