1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:07:45 +00:00

FileManager: Switch FileOperationProgressWidget::did_error() to SV&

This commit is contained in:
Sam Atkins 2021-06-24 16:28:24 +01:00 committed by Andreas Kling
parent 469bca9d3a
commit 9ac757647f
2 changed files with 5 additions and 5 deletions

View file

@ -22,7 +22,7 @@ private:
FileOperationProgressWidget(FileOperation, NonnullRefPtr<Core::File> helper_pipe);
void did_finish();
void did_error(String message);
void did_error(StringView const& message);
void did_progress(off_t bytes_done, off_t total_byte_count, size_t files_done, size_t total_file_count, off_t current_file_done, off_t current_file_size, StringView const& current_filename);
void close_pipe();