summaryrefslogtreecommitdiffstats
path: root/scene/main/window.h
diff options
context:
space:
mode:
authorRaul Santos <raulsntos@gmail.com>2024-01-30 21:03:28 +0100
committerRaul Santos <raulsntos@gmail.com>2024-02-23 01:50:18 +0100
commit5ba92e5a57b98ec403f036af7551844679c55cd1 (patch)
treef240e035aa8b9834c6a224fa0803318bf211b07e /scene/main/window.h
parent16d61427cab3a8e43f0a9a8ee724fc176b6433c6 (diff)
downloadredot-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.h4
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;