mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-12-09 05:27:41 +00:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user