Editor: Convert QVector over to QList

In Qt 6 QVector is now a typedef alias for QList, so we can convert these over
to make the semantics explicit.
This commit is contained in:
Lioncache
2025-11-30 15:27:28 -05:00
parent 0e56aa3fa8
commit 43eae548ac
28 changed files with 58 additions and 50 deletions

View File

@@ -12,6 +12,8 @@
#include <QUndoStack>
#include <QVBoxLayout>
#include <memory>
namespace Ui {
class CResourceBrowser;
}
@@ -97,7 +99,7 @@ public slots:
void OnSortModeChanged(int Index);
void OnCreateAssetAction();
bool CreateDirectory();
bool Delete(QVector<CResourceEntry*> Resources, QVector<CVirtualDirectory*> Directories);
bool Delete(QList<CResourceEntry*> Resources, QList<CVirtualDirectory*> Directories);
void OnSearchStringChanged(const QString& SearchString);
void OnDirectorySelectionChanged(const QModelIndex& rkNewIndex);
void OnDoubleClickTable(QModelIndex Index);