diff options
author | David Snopek <dsnopek@gmail.com> | 2024-08-29 14:13:17 -0500 |
---|---|---|
committer | David Snopek <dsnopek@gmail.com> | 2024-10-29 16:29:24 -0500 |
commit | 42e398e4e2e0cb8a440cdf8d7d800cdc6e6ad970 (patch) | |
tree | e0980e12fef659318a1b265777bac0d070ff5e37 /include/godot_cpp/classes | |
parent | ca5179f7d7428f21da563cc84526370344edae84 (diff) | |
download | redot-cpp-42e398e4e2e0cb8a440cdf8d7d800cdc6e6ad970.tar.gz |
Update for new NOTIFICATION_POSTINITIALIZE handling
Diffstat (limited to 'include/godot_cpp/classes')
-rw-r--r-- | include/godot_cpp/classes/wrapped.hpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/godot_cpp/classes/wrapped.hpp b/include/godot_cpp/classes/wrapped.hpp index 06b1b67..0c02d15 100644 --- a/include/godot_cpp/classes/wrapped.hpp +++ b/include/godot_cpp/classes/wrapped.hpp @@ -111,7 +111,6 @@ protected: ::godot::List<::godot::PropertyInfo> plist_owned; void _postinitialize(); - virtual void _notificationv(int32_t p_what, bool p_reversed = false) {} Wrapped(const StringName p_godot_class); Wrapped(GodotObject *p_godot_object); @@ -408,11 +407,6 @@ public: _gde_binding_reference_callback, \ }; \ \ -protected: \ - virtual void _notificationv(int32_t p_what, bool p_reversed = false) override { \ - m_class::notification_bind(this, p_what, p_reversed); \ - } \ - \ private: // Don't use this for your classes, use GDCLASS() instead. |