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

View File

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