Port from QVector to QList

This commit is contained in:
Gavin MacGregor
2025-03-18 16:24:12 +00:00
parent 0493f0e270
commit 4a15d9a206
4 changed files with 10 additions and 10 deletions

View File

@@ -52,7 +52,7 @@ void ClutModel::setSubPage(LevelOnePage *subPage)
{
if (subPage != m_subPage) {
m_subPage = subPage;
emit dataChanged(createIndex(0, 0), createIndex(31, 0), QVector<int>(Qt::DecorationRole));
emit dataChanged(createIndex(0, 0), createIndex(31, 0), QList<int>(Qt::DecorationRole));
}
}