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(", "));
|
||||
}
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return QVariant();
|
||||
|
@ -231,6 +233,8 @@ QVariant GameListModel::headerData(int section, Qt::Orientation orientation, int
|
|||
return tr("Compression");
|
||||
case Column::Tags:
|
||||
return tr("Tags");
|
||||
default:
|
||||
break;
|
||||
}
|
||||
return QVariant();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue