1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 23:48:11 +00:00

LibGUI: Remove the Core::File overload of write_to_file()

One less usage of `Core::File`, yay!
This commit is contained in:
Lucas CHOLLET 2023-01-15 00:32:39 -05:00 committed by Sam Atkins
parent 107e15c5bc
commit db80425a65
2 changed files with 0 additions and 44 deletions

View file

@ -130,7 +130,6 @@ public:
void insert_at_cursor_or_replace_selection(StringView);
void replace_all_text_without_resetting_undo_stack(StringView text);
ErrorOr<void> write_to_file(StringView path);
bool write_to_file(Core::File&);
ErrorOr<void> write_to_file(Core::Stream::File&);
bool has_selection() const { return m_selection.is_valid(); }
DeprecatedString selected_text() const;