Fix implicit fallthrough

Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
This commit is contained in:
Octol1ttle 2026-02-25 16:22:49 +05:00
parent 110d1a8fcf
commit eda4592f19
No known key found for this signature in database
GPG key ID: B77C34313AEE1FFF
5 changed files with 18 additions and 17 deletions

View file

@ -198,9 +198,8 @@ QVariant VersionProxyModel::data(const QModelIndex& index, int role) const
return tr("Latest");
}
}
} else {
return sourceModel()->data(parentIndex, BaseVersionList::VersionIdRole);
}
return sourceModel()->data(parentIndex, BaseVersionList::VersionIdRole);
}
case Qt::DecorationRole: {
if (column == Name && hasRecommended) {