mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-07-02 03:13:38 +00:00
CRotateNodeCommand: Convert operator<< into push_back()
This commit is contained in:
parent
6e0169ca16
commit
5a7d03a5cf
@ -52,9 +52,9 @@ void CResourceTableView::DeleteSelected()
|
|||||||
const QModelIndex SourceIndex = pProxy->mapToSource(Index);
|
const QModelIndex SourceIndex = pProxy->mapToSource(Index);
|
||||||
|
|
||||||
if (pModel->IsIndexDirectory(SourceIndex))
|
if (pModel->IsIndexDirectory(SourceIndex))
|
||||||
DirsToDelete << pModel->IndexDirectory(SourceIndex);
|
DirsToDelete.push_back(pModel->IndexDirectory(SourceIndex));
|
||||||
else
|
else
|
||||||
ResourcesToDelete << pModel->IndexEntry(SourceIndex);
|
ResourcesToDelete.push_back(pModel->IndexEntry(SourceIndex));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user