Fix indentation issues in last commits

Ping @reduz.
This commit is contained in:
Rémi Verschelde
2016-06-07 07:39:40 +02:00
parent 78218359b1
commit 0729c852b4
4 changed files with 30 additions and 32 deletions

View File

@@ -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());
}
}