diff options
author | Hubert Jarosz <marqin.pl@gmail.com> | 2016-03-09 00:00:52 +0100 |
---|---|---|
committer | Hubert Jarosz <marqin.pl@gmail.com> | 2016-03-09 00:00:52 +0100 |
commit | 4a4f2479146aa33e235ed57cde311efda68d3c8f (patch) | |
tree | cf91f2869ff8f058c6682569fb31e22e5ee736ad /scene/gui/file_dialog.h | |
parent | 1dad6eca812e5c2e313b54265114de8a1d73d999 (diff) |
remove trailing whitespace
Diffstat (limited to 'scene/gui/file_dialog.h')
-rw-r--r-- | scene/gui/file_dialog.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/scene/gui/file_dialog.h b/scene/gui/file_dialog.h index b71a157fa7..2042adbc20 100644 --- a/scene/gui/file_dialog.h +++ b/scene/gui/file_dialog.h @@ -41,9 +41,9 @@ @author Juan Linietsky <reduzio@gmail.com> */ class FileDialog : public ConfirmationDialog { - + OBJ_TYPE( FileDialog, ConfirmationDialog ); - + public: enum Access { @@ -89,7 +89,7 @@ private: ConfirmationDialog *confirm_save; ToolButton *refresh; - + Vector<String> filters; @@ -97,13 +97,13 @@ private: bool show_hidden_files; bool invalidated; - + void update_dir(); void update_file_list(); void update_filters(); - + void _tree_selected(); - + void _select_drive(int p_idx); void _tree_dc_selected(); void _dir_entered(String p_dir); @@ -122,18 +122,18 @@ private: virtual void _post_popup(); protected: - + void _notification(int p_what); static void _bind_methods(); //bind helpers public: - + void clear_filters(); void add_filter(const String& p_filter); void set_enable_multiple_selection(bool p_enable); Vector<String> get_selected_files() const; - + String get_current_dir() const; String get_current_file() const; String get_current_path() const; @@ -156,8 +156,8 @@ public: static void set_default_show_hidden_files(bool p_show); void invalidate(); - - FileDialog(); + + FileDialog(); ~FileDialog(); }; |