From 21f66aa78677bdf82c24fc320fdee09710660a8f Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 10 Jul 2020 15:42:22 -0400 Subject: [PATCH] CSelectAllCommand: Make use of push_back over operator<< --- src/Editor/Undo/CSelectAllCommand.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Editor/Undo/CSelectAllCommand.h b/src/Editor/Undo/CSelectAllCommand.h index c8db0f8b..7002da35 100644 --- a/src/Editor/Undo/CSelectAllCommand.h +++ b/src/Editor/Undo/CSelectAllCommand.h @@ -19,9 +19,9 @@ public: , mpSelection(pSelection) { for (CSelectionIterator It(pSelection); It; ++It) - mOldSelection << *It; + mOldSelection.push_back(*It); for (CSceneIterator It(pScene, NodeFlags); It; ++It) - mNewSelection << *It; + mNewSelection.push_back(*It); } void undo() override { mpSelection->SetSelectedNodes(mOldSelection.DereferenceList()); }