summaryrefslogtreecommitdiffstats
path: root/editor/plugins/control_editor_plugin.cpp
diff options
context:
space:
mode:
authorRaul Santos <raulsntos@gmail.com>2023-01-31 19:08:46 +0100
committerRaul Santos <raulsntos@gmail.com>2023-01-31 23:31:15 +0100
commitc7f4ca36a4541686d5944f7bf88e1aa7d32cc24f (patch)
treec3a8426fe3781fa2babb2af469a67b2c0d2d5c53 /editor/plugins/control_editor_plugin.cpp
parent9e9eac46763feec5334f50c55b5ffdd233ae6472 (diff)
downloadredot-engine-c7f4ca36a4541686d5944f7bf88e1aa7d32cc24f.tar.gz
Use `PropertyUsageFlags` enum in parse_property
Diffstat (limited to 'editor/plugins/control_editor_plugin.cpp')
-rw-r--r--editor/plugins/control_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/control_editor_plugin.cpp b/editor/plugins/control_editor_plugin.cpp
index 470b90aa7f..3bf2b95c26 100644
--- a/editor/plugins/control_editor_plugin.cpp
+++ b/editor/plugins/control_editor_plugin.cpp
@@ -423,7 +423,7 @@ void EditorInspectorPluginControl::parse_group(Object *p_object, const String &p
add_custom_control(pos_warning);
}
-bool EditorInspectorPluginControl::parse_property(Object *p_object, const Variant::Type p_type, const String &p_path, const PropertyHint p_hint, const String &p_hint_text, const uint32_t p_usage, const bool p_wide) {
+bool EditorInspectorPluginControl::parse_property(Object *p_object, const Variant::Type p_type, const String &p_path, const PropertyHint p_hint, const String &p_hint_text, const BitField<PropertyUsageFlags> p_usage, const bool p_wide) {
Control *control = Object::cast_to<Control>(p_object);
if (!control) {
return false;