diff options
author | Muller-Castro <37383316+Muller-Castro@users.noreply.github.com> | 2021-08-01 16:47:20 -0300 |
---|---|---|
committer | Muller-Castro <37383316+Muller-Castro@users.noreply.github.com> | 2024-01-05 14:49:57 -0300 |
commit | 96a95cb9743e755f10fa6a14895ea099e5ac4c51 (patch) | |
tree | 8ccdf0cc23500519680490cc6b2078889117f904 /editor/scene_tree_dock.cpp | |
parent | 89cc635c0554cb2e518c830969ca4c5eedda0f4e (diff) | |
download | redot-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.cpp | 2 |
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); |