mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-10 19:47:40 +01:00
DolphinQt, VideoBackends: Fix all cases of -Wswitch in gcc 11
This commit is contained in:
parent
3d662e746b
commit
7e39a0405b
@ -195,6 +195,8 @@ QVariant GameListModel::data(const QModelIndex& index, int role) const
|
|||||||
|
|
||||||
return tags.join(QStringLiteral(", "));
|
return tags.join(QStringLiteral(", "));
|
||||||
}
|
}
|
||||||
|
default:
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return QVariant();
|
return QVariant();
|
||||||
@ -231,6 +233,8 @@ QVariant GameListModel::headerData(int section, Qt::Orientation orientation, int
|
|||||||
return tr("Compression");
|
return tr("Compression");
|
||||||
case Column::Tags:
|
case Column::Tags:
|
||||||
return tr("Tags");
|
return tr("Tags");
|
||||||
|
default:
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
return QVariant();
|
return QVariant();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user