diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-10-29 19:25:36 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-10-29 19:25:36 -0500 |
commit | b7a0971ad2d168e31d9a3ba93bbc59865bb1c337 (patch) | |
tree | 1d67cb0af1f6c2c8f2b054ceef7f9f764b6ff35d /editor/gui | |
parent | 64b68192cc8a13e7ed87a8f64b2d5dd6f15e4056 (diff) | |
parent | 25b28aa8877faafde9f1770f4afccab95d681d43 (diff) | |
download | redot-engine-b7a0971ad2d168e31d9a3ba93bbc59865bb1c337.tar.gz |
Merge pull request #97934 from adamscott/give-AThousandShips-a-break
[Codestyle] Set clang-format `RemoveSemicolon` rule to `true`
Diffstat (limited to 'editor/gui')
-rw-r--r-- | editor/gui/editor_file_dialog.cpp | 4 | ||||
-rw-r--r-- | editor/gui/editor_toaster.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/editor/gui/editor_file_dialog.cpp b/editor/gui/editor_file_dialog.cpp index 7600748685..1735e325fc 100644 --- a/editor/gui/editor_file_dialog.cpp +++ b/editor/gui/editor_file_dialog.cpp @@ -350,7 +350,7 @@ void EditorFileDialog::shortcut_input(const Ref<InputEvent> &p_event) { void EditorFileDialog::set_enable_multiple_selection(bool p_enable) { item_list->set_select_mode(p_enable ? ItemList::SELECT_MULTI : ItemList::SELECT_SINGLE); -}; +} Vector<String> EditorFileDialog::get_selected_files() const { Vector<String> list; @@ -360,7 +360,7 @@ Vector<String> EditorFileDialog::get_selected_files() const { } } return list; -}; +} void EditorFileDialog::update_dir() { if (drives->is_visible()) { diff --git a/editor/gui/editor_toaster.cpp b/editor/gui/editor_toaster.cpp index 24f19db578..a38ed7f4c1 100644 --- a/editor/gui/editor_toaster.cpp +++ b/editor/gui/editor_toaster.cpp @@ -566,7 +566,7 @@ EditorToaster::EditorToaster() { eh.errfunc = _error_handler; add_error_handler(&eh); -}; +} EditorToaster::~EditorToaster() { singleton = nullptr; |