mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:27:45 +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
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