diff options
Diffstat (limited to 'core/object.cpp')
-rw-r--r-- | core/object.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/object.cpp b/core/object.cpp index cbe24a49f3..34d6d8487a 100644 --- a/core/object.cpp +++ b/core/object.cpp @@ -1403,9 +1403,9 @@ bool Object::has_persistent_signal_connections() const { void Object::get_signals_connected_to_this(List<Connection> *p_connections) const { - for (const List<Connection>::Element *E=connections.front();E;E=E->next()) { - p_connections->push_back(E->get()); - } + for (const List<Connection>::Element *E=connections.front();E;E=E->next()) { + p_connections->push_back(E->get()); + } } |