diff options
| author | Aaron Franke <arnfranke@yahoo.com> | 2020-12-05 16:01:27 -0500 |
|---|---|---|
| committer | Aaron Franke <arnfranke@yahoo.com> | 2020-12-05 17:56:47 -0500 |
| commit | 1b348b3c17f76cc7af1a53b648f42e76e9102b26 (patch) | |
| tree | e199803009bff5980c5fbe5a5a7e1a45b6884f2e /core/object/object.h | |
| parent | 91fd6374eb313aa31008a6b90f067644ede3e02f (diff) | |
| download | redot-engine-1b348b3c17f76cc7af1a53b648f42e76e9102b26.tar.gz | |
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; |
