replace qvector with qlist

Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
Trial97 2025-03-26 08:29:40 +02:00
parent 3df98dd5e7
commit 49f0e8ef6b
No known key found for this signature in database
GPG key ID: 55EF5DA53DB36318
45 changed files with 102 additions and 107 deletions

View file

@ -106,6 +106,6 @@ class IconList : public QAbstractListModel {
shared_qobject_ptr<QFileSystemWatcher> m_watcher;
bool m_isWatching;
QMap<QString, int> m_nameIndex;
QVector<MMCIcon> m_icons;
QList<MMCIcon> m_icons;
QDir m_dir;
};