diff options
Diffstat (limited to '')
| -rw-r--r-- | editor/editor_asset_installer.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/editor/editor_asset_installer.h b/editor/editor_asset_installer.h index 2d0486a6f..046387520 100644 --- a/editor/editor_asset_installer.h +++ b/editor/editor_asset_installer.h @@ -29,27 +29,26 @@ #ifndef EDITORASSETINSTALLER_H #define EDITORASSETINSTALLER_H - #include "scene/gui/dialogs.h" #include "scene/gui/tree.h" class EditorAssetInstaller : public ConfirmationDialog { - GDCLASS( EditorAssetInstaller, ConfirmationDialog ); + GDCLASS(EditorAssetInstaller, ConfirmationDialog); Tree *tree; String package_path; AcceptDialog *error; - Map<String,TreeItem*> status_map; + Map<String, TreeItem *> status_map; bool updating; - void _update_subitems(TreeItem* p_item,bool p_check,bool p_first=false); + void _update_subitems(TreeItem *p_item, bool p_check, bool p_first = false); void _item_edited(); virtual void ok_pressed(); -protected: +protected: static void _bind_methods(); -public: - void open(const String& p_path,int p_depth=0); +public: + void open(const String &p_path, int p_depth = 0); EditorAssetInstaller(); }; |
