From c4bf7547221bfab49309a5d5f4b45993e6459907 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 10 Jul 2020 12:05:52 -0400 Subject: [PATCH] CPoiMapSidebar: Make use of push_back over operator<< --- src/Editor/WorldEditor/CPoiMapSidebar.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Editor/WorldEditor/CPoiMapSidebar.cpp b/src/Editor/WorldEditor/CPoiMapSidebar.cpp index 0133b3b1..3a774b9e 100644 --- a/src/Editor/WorldEditor/CPoiMapSidebar.cpp +++ b/src/Editor/WorldEditor/CPoiMapSidebar.cpp @@ -191,17 +191,17 @@ void CPoiMapSidebar::UpdateModelHighlights() { case EHighlightMode::HighlightSelected: if (kSelection.contains(Index)) - SelectedIndices << Index; + SelectedIndices.push_back(Index); else - UnselectedIndices << Index; + UnselectedIndices.push_back(Index); break; case EHighlightMode::HighlightAll: - SelectedIndices << Index; + SelectedIndices.push_back(Index); break; case EHighlightMode::HighlightNone: - UnselectedIndices << Index; + UnselectedIndices.push_back(Index); break; } }