diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-12-06 00:55:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-06 00:55:28 +0100 |
commit | 93b107ac93db82a2790d6ebf5d0893dd72eb670a (patch) | |
tree | e199803009bff5980c5fbe5a5a7e1a45b6884f2e /core/object/object.h | |
parent | 91fd6374eb313aa31008a6b90f067644ede3e02f (diff) | |
parent | 1b348b3c17f76cc7af1a53b648f42e76e9102b26 (diff) |
Merge pull request #44132 from aaronfranke/no-connect-compat
Remove connect *_compat methods
Diffstat (limited to 'core/object/object.h')
-rw-r--r-- | core/object/object.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/core/object/object.h b/core/object/object.h index 0bcfa42e3d..5bf9600c5a 100644 --- a/core/object/object.h +++ b/core/object/object.h @@ -697,10 +697,6 @@ public: int get_persistent_signal_connection_count() const; void get_signals_connected_to_this(List<Connection> *p_connections) const; - Error connect_compat(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_compat(const StringName &p_signal, Object *p_to_object, const StringName &p_to_method); - bool is_connected_compat(const StringName &p_signal, Object *p_to_object, const StringName &p_to_method) const; - Error connect(const StringName &p_signal, const Callable &p_callable, const Vector<Variant> &p_binds = Vector<Variant>(), uint32_t p_flags = 0); void disconnect(const StringName &p_signal, const Callable &p_callable); bool is_connected(const StringName &p_signal, const Callable &p_callable) const; |