CInvertSelectionCommand: Mark use of push_back over operator<<

This commit is contained in:
Lioncash 2020-07-10 15:32:14 -04:00
parent 01f7cacc42
commit 1fca5e1c0a
1 changed files with 2 additions and 2 deletions

View File

@ -20,9 +20,9 @@ public:
for (CSceneIterator It(pScene, NodeFlags); It; ++It) for (CSceneIterator It(pScene, NodeFlags); It; ++It)
{ {
if (It->IsSelected()) if (It->IsSelected())
mOldSelection << *It; mOldSelection.push_back(*It);
else else
mNewSelection << *It; mNewSelection.push_back(*It);
} }
} }