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);
|
||||
|
||||
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));
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue