Resolve other switch fallthrough issues

This commit is contained in:
PandaNinjas
2023-06-07 19:37:54 -04:00
parent 5d425ecc02
commit 318d11481d
14 changed files with 60 additions and 74 deletions

View File

@ -48,8 +48,8 @@ QVariant Index::data(const QModelIndex &index, int role) const
switch (index.column())
{
case 0: return list->humanReadable();
default: break;
}
break;
case UidRole: return list->uid();
case NameRole: return list->name();
case ListPtrRole: return QVariant::fromValue(list);