summaryrefslogtreecommitdiffstats
path: root/editor/scene_tree_dock.cpp
diff options
context:
space:
mode:
authorMuller-Castro <37383316+Muller-Castro@users.noreply.github.com>2021-08-01 16:47:20 -0300
committerMuller-Castro <37383316+Muller-Castro@users.noreply.github.com>2024-01-05 14:49:57 -0300
commit96a95cb9743e755f10fa6a14895ea099e5ac4c51 (patch)
tree8ccdf0cc23500519680490cc6b2078889117f904 /editor/scene_tree_dock.cpp
parent89cc635c0554cb2e518c830969ca4c5eedda0f4e (diff)
downloadredot-engine-96a95cb9743e755f10fa6a14895ea099e5ac4c51.tar.gz
Add const lvalue ref to container parameters
Diffstat (limited to 'editor/scene_tree_dock.cpp')
-rw-r--r--editor/scene_tree_dock.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/scene_tree_dock.cpp b/editor/scene_tree_dock.cpp
index 3ea96a66cd..4a5358e435 100644
--- a/editor/scene_tree_dock.cpp
+++ b/editor/scene_tree_dock.cpp
@@ -1243,7 +1243,7 @@ void SceneTreeDock::_tool_selected(int p_tool, bool p_confirm_override) {
if (cant_be_set_unique_names.size()) {
String popup_text = TTR("Unique names already used by another node in the scene:");
popup_text += "\n";
- for (StringName name : cant_be_set_unique_names) {
+ for (const StringName &name : cant_be_set_unique_names) {
popup_text += "\n" + String(name);
}
accept->set_text(popup_text);