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