mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-07-04 12:15:58 +00:00
CInvertSelectionCommand: Mark use of push_back over operator<<
This commit is contained in:
parent
01f7cacc42
commit
1fca5e1c0a
@ -20,9 +20,9 @@ public:
|
||||
for (CSceneIterator It(pScene, NodeFlags); It; ++It)
|
||||
{
|
||||
if (It->IsSelected())
|
||||
mOldSelection << *It;
|
||||
mOldSelection.push_back(*It);
|
||||
else
|
||||
mNewSelection << *It;
|
||||
mNewSelection.push_back(*It);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user