mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-12-19 01:46:27 +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:
@@ -5,6 +5,7 @@
|
||||
#include <Core/GameProject/CGameProject.h>
|
||||
#include <Core/Resource/CWorld.h>
|
||||
#include <QDialog>
|
||||
#include <QList>
|
||||
|
||||
#include <memory>
|
||||
|
||||
@@ -18,8 +19,8 @@ class CProjectSettingsDialog : public QDialog
|
||||
std::unique_ptr<Ui::CProjectSettingsDialog> mpUI;
|
||||
CGameProject *mpProject = nullptr;
|
||||
|
||||
QVector<CResourceEntry*> mWorldEntries;
|
||||
QVector<CResourceEntry*> mAreaEntries;
|
||||
QList<CResourceEntry*> mWorldEntries;
|
||||
QList<CResourceEntry*> mAreaEntries;
|
||||
TResPtr<CWorld> mpWorld;
|
||||
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user