diff options
author | Tomasz Chabora <kobewi4e@gmail.com> | 2020-10-30 22:23:08 +0100 |
---|---|---|
committer | Tomasz Chabora <kobewi4e@gmail.com> | 2020-10-30 22:23:08 +0100 |
commit | 16af326a46b102580f8efa09bbf64f9ab281f3f6 (patch) | |
tree | 49016c1ad7f3791e29994a94f6e6771f31358c84 /editor/editor_data.cpp | |
parent | 41f66761fd8e41760dbffce9b9a4a4d8ceb7af0b (diff) |
Remove unused get_subeditor() method
Diffstat (limited to 'editor/editor_data.cpp')
-rw-r--r-- | editor/editor_data.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/editor/editor_data.cpp b/editor/editor_data.cpp index 1002c4917b..72a316f91a 100644 --- a/editor/editor_data.cpp +++ b/editor/editor_data.cpp @@ -273,16 +273,6 @@ EditorPlugin *EditorData::get_editor(Object *p_object) { return nullptr; } -EditorPlugin *EditorData::get_subeditor(Object *p_object) { - for (int i = editor_plugins.size() - 1; i > -1; i--) { - if (!editor_plugins[i]->has_main_screen() && editor_plugins[i]->handles(p_object)) { - return editor_plugins[i]; - } - } - - return nullptr; -} - Vector<EditorPlugin *> EditorData::get_subeditors(Object *p_object) { Vector<EditorPlugin *> sub_plugins; for (int i = editor_plugins.size() - 1; i > -1; i--) { |