diff options
author | unknown <numaanzaheerahmed@yahoo.com> | 2020-04-05 02:50:32 +0530 |
---|---|---|
committer | unknown <numaanzaheerahmed@yahoo.com> | 2020-04-05 02:50:32 +0530 |
commit | 0fa7703565830fadbe4840703c6cb2f6e72a01b8 (patch) | |
tree | 5094512dc43cfdeeea0d5659ed440ada5b6d70dd /scene/gui/file_dialog.h | |
parent | 321ce4d4c46a998baa26e8e562775b7e28030339 (diff) |
Removed reduntant class LineEditFileChooser.
Diffstat (limited to 'scene/gui/file_dialog.h')
-rw-r--r-- | scene/gui/file_dialog.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/scene/gui/file_dialog.h b/scene/gui/file_dialog.h index 6faf02d55d..ac0e733abc 100644 --- a/scene/gui/file_dialog.h +++ b/scene/gui/file_dialog.h @@ -177,27 +177,6 @@ public: ~FileDialog(); }; -class LineEditFileChooser : public HBoxContainer { - - GDCLASS(LineEditFileChooser, HBoxContainer); - Button *button; - LineEdit *line_edit; - FileDialog *dialog; - - void _chosen(const String &p_text); - void _browse(); - -protected: - static void _bind_methods(); - -public: - Button *get_button() { return button; } - LineEdit *get_line_edit() { return line_edit; } - FileDialog *get_file_dialog() { return dialog; } - - LineEditFileChooser(); -}; - VARIANT_ENUM_CAST(FileDialog::FileMode); VARIANT_ENUM_CAST(FileDialog::Access); |