summaryrefslogtreecommitdiff
path: root/Applications/TextEditor
diff options
context:
space:
mode:
authorTom <tomut@yahoo.com>2020-07-15 19:52:02 -0600
committerAndreas Kling <kling@serenityos.org>2020-07-16 16:10:21 +0200
commit6568765e8f89563fa76407ce5e369ec1eb09c125 (patch)
treeab185f89d668de23ed608a8b11ae5491df3b4d16 /Applications/TextEditor
parent98440889641fcd7d049921146984ca5ec3b957b3 (diff)
downloadserenity-6568765e8f89563fa76407ce5e369ec1eb09c125.zip
LibGUI: Add parent window argument to FilePicker functions
Since FilePicker almost always should be modal, add the parent window as mandatory first argument.
Diffstat (limited to 'Applications/TextEditor')
-rw-r--r--Applications/TextEditor/TextEditorWidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Applications/TextEditor/TextEditorWidget.cpp b/Applications/TextEditor/TextEditorWidget.cpp
index a1538c4e8f..c368b73017 100644
--- a/Applications/TextEditor/TextEditorWidget.cpp
+++ b/Applications/TextEditor/TextEditorWidget.cpp
@@ -304,7 +304,7 @@ TextEditorWidget::TextEditorWidget()
});
m_open_action = GUI::CommonActions::make_open_action([this](auto&) {
- Optional<String> open_path = GUI::FilePicker::get_open_filepath();
+ Optional<String> open_path = GUI::FilePicker::get_open_filepath(window());
if (!open_path.has_value())
return;
@@ -321,7 +321,7 @@ TextEditorWidget::TextEditorWidget()
});
m_save_as_action = GUI::Action::create("Save as...", { Mod_Ctrl | Mod_Shift, Key_S }, Gfx::Bitmap::load_from_file("/res/icons/16x16/save.png"), [this](const GUI::Action&) {
- Optional<String> save_path = GUI::FilePicker::get_save_filepath(m_name.is_null() ? "Untitled" : m_name, m_extension.is_null() ? "txt" : m_extension);
+ Optional<String> save_path = GUI::FilePicker::get_save_filepath(window(), m_name.is_null() ? "Untitled" : m_name, m_extension.is_null() ? "txt" : m_extension);
if (!save_path.has_value())
return;