CClearSelectionCommand: Make use of push_back over operator<<

This commit is contained in:
Lioncash 2020-07-10 15:22:24 -04:00
parent e19d0558d0
commit fafa12af91
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ public:
mpSelection(pSelection) mpSelection(pSelection)
{ {
for (CSelectionIterator It(pSelection); It; ++It) for (CSelectionIterator It(pSelection); It; ++It)
mOldSelection << *It; mOldSelection.push_back(*It);
} }
void undo() override { mpSelection->SetSelectedNodes(mOldSelection.DereferenceList()); } void undo() override { mpSelection->SetSelectedNodes(mOldSelection.DereferenceList()); }