1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 21:37:36 +00:00

FileManager: Rename FileOperation::Cut to FileOperation::Move

This commit is contained in:
Sam Atkins 2021-06-22 13:56:53 +01:00 committed by Andreas Kling
parent 5090b1bdba
commit dd833dc220
4 changed files with 9 additions and 9 deletions

View file

@ -16,7 +16,7 @@ namespace FileManager {
enum class FileOperation {
Copy = 0,
Cut
Move
};
void delete_path(String const&, GUI::Window*);