diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-01-25 21:55:59 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2017-01-25 21:57:08 -0300 |
commit | 96de0141ccef3bb035574010816dafdbfc17eb63 (patch) | |
tree | 24bcad418177b4aba1a24d959a50ff401028f0ea /tools/editor/editor_node.h | |
parent | ae258e2679bd9deda8b311d030771fab03303833 (diff) |
Removed import/export system, will start new one from scratch.
Diffstat (limited to 'tools/editor/editor_node.h')
-rw-r--r-- | tools/editor/editor_node.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/tools/editor/editor_node.h b/tools/editor/editor_node.h index fbba7ae7a9..faf11f5d20 100644 --- a/tools/editor/editor_node.h +++ b/tools/editor/editor_node.h @@ -340,7 +340,7 @@ private: Vector<ToolButton*> main_editor_buttons; Vector<EditorPlugin*> editor_table; - EditorReImportDialog *reimport_dialog; +// EditorReImportDialog *reimport_dialog; ProgressDialog *progress_dialog; BackgroundProgress *progress_hb; @@ -391,8 +391,8 @@ private: EditorData editor_data; EditorRun editor_run; EditorSelection *editor_selection; - ProjectExport *project_export; - ProjectExportDialog *project_export_settings; +// ProjectExport *project_export; +// ProjectExportDialog *project_export_settings; EditorResourcePreview *resource_preview; EditorFileServer *file_server; @@ -647,9 +647,6 @@ public: void add_control_to_dock(DockSlot p_slot,Control* p_control); void remove_control_from_dock(Control* p_control); - void add_editor_import_plugin(const Ref<EditorImportPlugin>& p_editor_import); - void remove_editor_import_plugin(const Ref<EditorImportPlugin>& p_editor_import); - void set_addon_plugin_enabled(const String& p_addon,bool p_enabled); bool is_addon_plugin_enabled(const String &p_addon) const; |