diff options
author | Tomasz Chabora <kobewi4e@gmail.com> | 2020-12-06 16:09:18 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2022-09-18 13:08:54 +0200 |
commit | 882a4f890620df1b029bc5de0aa58c72dd087d61 (patch) | |
tree | f76e3fd1191c2f0376f43686db26228434090dfc /editor/editor_file_dialog.h | |
parent | 4ab3fdcda07bf700b33eb7c85f53826b2464c02f (diff) | |
download | redot-engine-882a4f890620df1b029bc5de0aa58c72dd087d61.tar.gz |
Port remaining connections to callable_mp
Diffstat (limited to 'editor/editor_file_dialog.h')
-rw-r--r-- | editor/editor_file_dialog.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/editor/editor_file_dialog.h b/editor/editor_file_dialog.h index 6d11cb10ed..2e7302aaf9 100644 --- a/editor/editor_file_dialog.h +++ b/editor/editor_file_dialog.h @@ -202,7 +202,6 @@ private: void _select_drive(int p_idx); void _dir_submitted(String p_dir); - void _file_submitted(const String &p_file); void _action_pressed(); void _save_confirm_pressed(); void _cancel_pressed(); @@ -240,6 +239,9 @@ protected: static void _bind_methods(); public: + // Public for use with callable_mp. + void _file_submitted(const String &p_file); + void popup_file_dialog(); void clear_filters(); void add_filter(const String &p_filter, const String &p_description = ""); |