1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:07:35 +00:00

LibGUI: Tweak API for getting the selected path

Return a String instead of a LexicalPath. Also call it a path instead
of a file since that's what we're really returning.
This commit is contained in:
Andreas Kling 2021-05-20 20:40:32 +02:00
parent 8a6c37deef
commit 3773e72752
2 changed files with 5 additions and 5 deletions

View file

@ -33,7 +33,7 @@ public:
virtual ~FilePicker() override;
LexicalPath selected_file() const { return m_selected_file; }
String const& selected_file() const { return m_selected_file; }
private:
void on_file_return();
@ -66,7 +66,7 @@ private:
RefPtr<MultiView> m_view;
NonnullRefPtr<FileSystemModel> m_model;
LexicalPath m_selected_file;
String m_selected_file;
RefPtr<TextBox> m_filename_textbox;
RefPtr<TextBox> m_location_textbox;