summaryrefslogtreecommitdiffstats
path: root/core/object.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2016-06-07 07:39:40 +0200
committerRémi Verschelde <rverschelde@gmail.com>2016-06-07 07:39:40 +0200
commit0729c852b4f459b9cb6350f564136e3e8aa6c2cf (patch)
tree7b58f29e488d8d8663521923f0c3b78178460864 /core/object.cpp
parent78218359b1e85728cda9879aba326dda021219a8 (diff)
downloadredot-engine-0729c852b4f459b9cb6350f564136e3e8aa6c2cf.tar.gz
Fix indentation issues in last commits
Ping @reduz.
Diffstat (limited to 'core/object.cpp')
-rw-r--r--core/object.cpp6
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());
+ }
}