diff options
author | Raul Santos <raulsntos@gmail.com> | 2024-01-30 21:03:28 +0100 |
---|---|---|
committer | Raul Santos <raulsntos@gmail.com> | 2024-02-23 01:50:18 +0100 |
commit | 5ba92e5a57b98ec403f036af7551844679c55cd1 (patch) | |
tree | f240e035aa8b9834c6a224fa0803318bf211b07e /scene/main/window.h | |
parent | 16d61427cab3a8e43f0a9a8ee724fc176b6433c6 (diff) | |
download | redot-engine-5ba92e5a57b98ec403f036af7551844679c55cd1.tar.gz |
Fix some DEFVALs to use the right type
- Use `StringName()` in DEFVAL for StringNames.
- Use `Variant()` in DEFVAL for Variants.
Diffstat (limited to 'scene/main/window.h')
-rw-r--r-- | scene/main/window.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scene/main/window.h b/scene/main/window.h index 73dba67f45..70ee744344 100644 --- a/scene/main/window.h +++ b/scene/main/window.h @@ -245,6 +245,10 @@ protected: void _notification(int p_what); static void _bind_methods(); +#ifndef DISABLE_DEPRECATED + static void _bind_compatibility_methods(); +#endif + bool _set(const StringName &p_name, const Variant &p_value); bool _get(const StringName &p_name, Variant &r_ret) const; void _get_property_list(List<PropertyInfo> *p_list) const; |