aboutsummaryrefslogtreecommitdiff
path: root/launcher/meta
diff options
context:
space:
mode:
authorPandaNinjas <admin@malwarefight.wip.la>2023-06-07 19:37:54 -0400
committerPandaNinjas <admin@malwarefight.wip.la>2023-06-07 19:37:54 -0400
commit318d11481d719cf537ecdc00f8d676494bab22b6 (patch)
tree081a070aeeb4ca0f05fceef19eb64d5075edaf04 /launcher/meta
parent5d425ecc025aa1fc4a5292961a5ff1b18a108885 (diff)
downloadPrismLauncher-318d11481d719cf537ecdc00f8d676494bab22b6.tar.gz
PrismLauncher-318d11481d719cf537ecdc00f8d676494bab22b6.tar.bz2
PrismLauncher-318d11481d719cf537ecdc00f8d676494bab22b6.zip
Resolve other switch fallthrough issues
Diffstat (limited to 'launcher/meta')
-rw-r--r--launcher/meta/Index.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/meta/Index.cpp b/launcher/meta/Index.cpp
index 242aad9f..2902f290 100644
--- a/launcher/meta/Index.cpp
+++ b/launcher/meta/Index.cpp
@@ -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);