mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-12-09 21:47:45 +00:00
CWorldEditor: Make use of push_back over operator<<
This commit is contained in:
@@ -1103,7 +1103,7 @@ void CWorldEditor::OnUnlinkClicked()
|
||||
for (CSelectionIterator It(mpSelection); It; ++It)
|
||||
{
|
||||
if (It->NodeType() == ENodeType::Script)
|
||||
SelectedScriptNodes << static_cast<CScriptNode*>(*It);
|
||||
SelectedScriptNodes.push_back(static_cast<CScriptNode*>(*It));
|
||||
}
|
||||
|
||||
if (!SelectedScriptNodes.isEmpty())
|
||||
|
||||
Reference in New Issue
Block a user