summaryrefslogtreecommitdiffstats
path: root/editor/editor_properties.h
diff options
context:
space:
mode:
authorYuri Sizov <yuris@humnom.net>2021-11-10 17:49:19 +0300
committerYuri Sizov <yuris@humnom.net>2021-11-10 17:56:59 +0300
commit2e4d18c92926b15188fc479e3fa432a453b45df8 (patch)
tree924f37bb0b538b9702172bd791e9b1fd8b8d8bd1 /editor/editor_properties.h
parente317e34c15cc0b2021198d6b53e515b29170c9f6 (diff)
downloadredot-engine-2e4d18c92926b15188fc479e3fa432a453b45df8.tar.gz
Fix EditorInspectorPlugin virtual bindings and add parse_group callback
Diffstat (limited to 'editor/editor_properties.h')
-rw-r--r--editor/editor_properties.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/editor/editor_properties.h b/editor/editor_properties.h
index 754d444309..42ef650adc 100644
--- a/editor/editor_properties.h
+++ b/editor/editor_properties.h
@@ -696,9 +696,7 @@ class EditorInspectorDefaultPlugin : public EditorInspectorPlugin {
public:
virtual bool can_handle(Object *p_object) override;
- virtual void parse_begin(Object *p_object) override;
virtual bool 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 = false) override;
- virtual void parse_end() override;
static EditorProperty *get_editor_for_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 = false);
};