diff options
author | Andreas Kling <kling@serenityos.org> | 2021-04-29 21:46:15 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-29 22:16:18 +0200 |
commit | 7ae7170d6140f7cad730f05f84b53437058b82f4 (patch) | |
tree | 79caaefa15a1e4ae1c60def7a40425983206c281 /Userland/Games | |
parent | def1f1444aeee2caf6d47d0eb96a18ffc476c3f9 (diff) | |
download | serenity-7ae7170d6140f7cad730f05f84b53437058b82f4.zip |
Everywhere: "file name" => "filename"
Diffstat (limited to 'Userland/Games')
-rw-r--r-- | Userland/Games/2048/main.cpp | 2 | ||||
-rw-r--r-- | Userland/Games/Chess/main.cpp | 2 | ||||
-rw-r--r-- | Userland/Games/Minesweeper/main.cpp | 2 | ||||
-rw-r--r-- | Userland/Games/Pong/main.cpp | 2 | ||||
-rw-r--r-- | Userland/Games/Snake/main.cpp | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/Userland/Games/2048/main.cpp b/Userland/Games/2048/main.cpp index 99054b1470..4c12afe699 100644 --- a/Userland/Games/2048/main.cpp +++ b/Userland/Games/2048/main.cpp @@ -56,7 +56,7 @@ int main(int argc, char** argv) return 1; } - if (unveil(config->file_name().characters(), "crw") < 0) { + if (unveil(config->filename().characters(), "crw") < 0) { perror("unveil"); return 1; } diff --git a/Userland/Games/Chess/main.cpp b/Userland/Games/Chess/main.cpp index 928d7990f3..4747a14996 100644 --- a/Userland/Games/Chess/main.cpp +++ b/Userland/Games/Chess/main.cpp @@ -38,7 +38,7 @@ int main(int argc, char** argv) return 1; } - if (unveil(config->file_name().characters(), "crw") < 0) { + if (unveil(config->filename().characters(), "crw") < 0) { perror("unveil"); return 1; } diff --git a/Userland/Games/Minesweeper/main.cpp b/Userland/Games/Minesweeper/main.cpp index 424adf59cb..c6a1d1994a 100644 --- a/Userland/Games/Minesweeper/main.cpp +++ b/Userland/Games/Minesweeper/main.cpp @@ -40,7 +40,7 @@ int main(int argc, char** argv) return 1; } - if (unveil(config->file_name().characters(), "crw") < 0) { + if (unveil(config->filename().characters(), "crw") < 0) { perror("unveil"); return 1; } diff --git a/Userland/Games/Pong/main.cpp b/Userland/Games/Pong/main.cpp index d7cce5901e..6451b5d3ec 100644 --- a/Userland/Games/Pong/main.cpp +++ b/Userland/Games/Pong/main.cpp @@ -35,7 +35,7 @@ int main(int argc, char** argv) return 1; } - if (unveil(config->file_name().characters(), "rwc") < 0) { + if (unveil(config->filename().characters(), "rwc") < 0) { perror("unveil"); return 1; } diff --git a/Userland/Games/Snake/main.cpp b/Userland/Games/Snake/main.cpp index 13674ea302..ae10a8b7a1 100644 --- a/Userland/Games/Snake/main.cpp +++ b/Userland/Games/Snake/main.cpp @@ -38,7 +38,7 @@ int main(int argc, char** argv) return 1; } - if (unveil(config->file_name().characters(), "crw") < 0) { + if (unveil(config->filename().characters(), "crw") < 0) { perror("unveil"); return 1; } |