mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-22 01:08:56 +00:00
FileManager+FileOperation: Switch to east const
(And some adjustments based on MaxWipfli's feedback)
This commit is contained in:
parent
5217875f6a
commit
ca039e6ba1
Notes:
sideshowbarker
2024-07-18 08:34:56 +09:00
Author: https://github.com/AtkinsSJ
Commit: ca039e6ba1
Pull-request: https://github.com/SerenityOS/serenity/pull/8117
Reviewed-by: https://github.com/MaxWipfli ✅
10 changed files with 93 additions and 93 deletions
|
@ -18,6 +18,6 @@ enum class FileOperation {
|
|||
Cut
|
||||
};
|
||||
|
||||
void delete_path(const String&, GUI::Window*);
|
||||
void delete_paths(const Vector<String>&, bool should_confirm, GUI::Window*);
|
||||
void delete_path(String const&, GUI::Window*);
|
||||
void delete_paths(Vector<String> const&, bool should_confirm, GUI::Window*);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue