mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-12-14 23:56:23 +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:
@@ -195,7 +195,7 @@ QModelIndex CVirtualDirectoryModel::GetIndexForDirectory(const CVirtualDirectory
|
||||
if (pDir == nullptr)
|
||||
return QModelIndex();
|
||||
|
||||
QVector<int> Indices;
|
||||
QList<int> Indices;
|
||||
const CVirtualDirectory* pOriginal = pDir;
|
||||
const CVirtualDirectory* pParent = pDir->Parent();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user