diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2021-07-24 15:46:25 +0200 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2021-07-25 12:22:25 +0200 |
| commit | ac3322b0af8f23e8e2dac8111200bc69b5604c9f (patch) | |
| tree | 59a079f13b5c03c2dd3328a26c55f3618e6014f6 /editor/connections_dialog.cpp | |
| parent | a0f7f42b842462646281f5c4c9a8db070e034adc (diff) | |
| download | redot-engine-ac3322b0af8f23e8e2dac8111200bc69b5604c9f.tar.gz | |
Use const references where possible for List range iterators
Diffstat (limited to 'editor/connections_dialog.cpp')
| -rw-r--r-- | editor/connections_dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/connections_dialog.cpp b/editor/connections_dialog.cpp index f5cfe0fe57..c773f51342 100644 --- a/editor/connections_dialog.cpp +++ b/editor/connections_dialog.cpp @@ -1023,7 +1023,7 @@ void ConnectionsDock::update_tree() { List<Object::Connection> connections; selectedNode->get_signal_connection_list(signal_name, &connections); - for (Object::Connection &F : connections) { + for (const Object::Connection &F : connections) { Connection cn = F; if (!(cn.flags & CONNECT_PERSIST)) { continue; |
