CRotateNodeCommand: Convert operator<< into push_back()

This commit is contained in:
Lioncash 2020-07-10 11:40:42 -04:00
parent 6e0169ca16
commit 5a7d03a5cf
1 changed files with 2 additions and 2 deletions

View File

@ -52,9 +52,9 @@ void CResourceTableView::DeleteSelected()
const QModelIndex SourceIndex = pProxy->mapToSource(Index);
if (pModel->IsIndexDirectory(SourceIndex))
DirsToDelete << pModel->IndexDirectory(SourceIndex);
DirsToDelete.push_back(pModel->IndexDirectory(SourceIndex));
else
ResourcesToDelete << pModel->IndexEntry(SourceIndex);
ResourcesToDelete.push_back(pModel->IndexEntry(SourceIndex));
}