diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-06-07 07:39:40 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2016-06-07 07:39:40 +0200 |
commit | 0729c852b4f459b9cb6350f564136e3e8aa6c2cf (patch) | |
tree | 7b58f29e488d8d8663521923f0c3b78178460864 /core/object.h | |
parent | 78218359b1e85728cda9879aba326dda021219a8 (diff) |
Fix indentation issues in last commits
Ping @reduz.
Diffstat (limited to 'core/object.h')
-rw-r--r-- | core/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/object.h b/core/object.h index ce545a58e8..9359f4d4b2 100644 --- a/core/object.h +++ b/core/object.h @@ -605,7 +605,7 @@ public: void get_signal_connection_list(const StringName& p_signal,List<Connection> *p_connections) const; void get_all_signal_connections(List<Connection> *p_connections) const; bool has_persistent_signal_connections() const; - void get_signals_connected_to_this(List<Connection> *p_connections) const; + void get_signals_connected_to_this(List<Connection> *p_connections) const; Error connect(const StringName& p_signal, Object *p_to_object, const StringName& p_to_method,const Vector<Variant>& p_binds=Vector<Variant>(),uint32_t p_flags=0); void disconnect(const StringName& p_signal, Object *p_to_object, const StringName& p_to_method); |