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:
parent
8a6c37deef
commit
3773e72752
2 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue