diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-09-11 15:53:50 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2018-09-11 16:09:19 +0200 |
commit | 45b609f46a1b17ecfd9bc91061ef3a8a1ba2e4e8 (patch) | |
tree | 9487171772c27b1a7b2ad0ec6097cdf925a59b1c /editor/plugins/item_list_editor_plugin.h | |
parent | 4c37ea59be1e85b397c48577857b783db10f22d5 (diff) | |
download | redot-engine-45b609f46a1b17ecfd9bc91061ef3a8a1ba2e4e8.tar.gz |
Replace last occurrences of PropertyEditor by EditorInspector
Updates the following plugins:
- ConnectionsDialog
- ScriptEditorDebugger
- ItemListEditorPlugin
Also drop now unnecessary compatibility methods.
Diffstat (limited to 'editor/plugins/item_list_editor_plugin.h')
-rw-r--r-- | editor/plugins/item_list_editor_plugin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/item_list_editor_plugin.h b/editor/plugins/item_list_editor_plugin.h index d6a071b9b9..3dc3775f83 100644 --- a/editor/plugins/item_list_editor_plugin.h +++ b/editor/plugins/item_list_editor_plugin.h @@ -32,9 +32,9 @@ #define ITEM_LIST_EDITOR_PLUGIN_H #include "canvas_item_editor_plugin.h" +#include "editor/editor_inspector.h" #include "editor/editor_node.h" #include "editor/editor_plugin.h" - #include "scene/gui/menu_button.h" #include "scene/gui/option_button.h" #include "scene/gui/popup_menu.h" @@ -210,7 +210,7 @@ class ItemListEditor : public HBoxContainer { ToolButton *toolbar_button; AcceptDialog *dialog; - PropertyEditor *property_editor; + EditorInspector *property_editor; Tree *tree; Button *add_button; Button *del_button; |