diff options
author | Linus Groh <mail@linusgroh.de> | 2022-06-28 19:01:38 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-06-28 21:10:10 +0100 |
commit | cc4bb59a7e551788a6af6ea89ddb9af8391b186e (patch) | |
tree | 067a6ea510ea0c9fe33d5873f3adbc6eb5d3d2c2 /Documentation | |
parent | 93488d6d5afcce8a79eff6c798c26f3152332dfc (diff) | |
download | serenity-cc4bb59a7e551788a6af6ea89ddb9af8391b186e.zip |
Playground: Rename the application to GMLPlayground
Just "Playground" is too generic and doesn't match the general rule of
"application name equals display name minus spaces".
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/FileFormats.md | 2 | ||||
-rw-r--r-- | Documentation/HighDPI.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/FileFormats.md b/Documentation/FileFormats.md index 8158da9b39..c4b253da2a 100644 --- a/Documentation/FileFormats.md +++ b/Documentation/FileFormats.md @@ -70,7 +70,7 @@ Most prominently, the first four bytes contain the filemagic: `!Fnt`. These files are human-readable, have no easily detectable filemagic, and define GUI designs and layouts. The format is strongly influenced by QML, the Qt Modeling Language. -See the [GML manpage(s)](../Base/usr/share/man/man5/GML.md), [Playground(1)](../Userland/DevTools/Playground/), and the [GML support in LibGUI](../Userland/Libraries/LibGUI/GML/). +See the [GML manpage(s)](../Base/usr/share/man/man5/GML.md), [GML Playground(1)](../Userland/DevTools/GMLPlayground/), and the [GML support in LibGUI](../Userland/Libraries/LibGUI/GML/). ## Inter Process Communication (`*.ipc` files) diff --git a/Documentation/HighDPI.md b/Documentation/HighDPI.md index 435fe8bb2f..0b31b27335 100644 --- a/Documentation/HighDPI.md +++ b/Documentation/HighDPI.md @@ -164,7 +164,7 @@ This isn't figured out yet, for now we're doing the first approach in select pla Currently: - auto app_icon = GUI::Icon::default_icon("app-playground"); + auto app_icon = GUI::Icon::default_icon("app-gml-playground"); or |