diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-12-29 19:07:38 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-12-29 19:07:52 +0100 |
commit | 6a94214502410b5f82193cb46f6683abb8907910 (patch) | |
tree | e0a280475d00136f11bdc5398b209e5668f4cea5 /Applications | |
parent | 2de19342e7b419798674a64082027acc1ed8bae7 (diff) | |
download | serenity-6a94214502410b5f82193cb46f6683abb8907910.zip |
About: Embrace the SerenityOS name
Diffstat (limited to 'Applications')
-rw-r--r-- | Applications/About/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Applications/About/main.cpp b/Applications/About/main.cpp index 9ee365f3ba..0683d0293f 100644 --- a/Applications/About/main.cpp +++ b/Applications/About/main.cpp @@ -11,7 +11,7 @@ int main(int argc, char** argv) GApplication app(argc, argv); auto window = GWindow::construct(); - window->set_title("About Serenity"); + window->set_title("About SerenityOS"); Rect window_rect { 0, 0, 240, 180 }; window_rect.center_within(GDesktop::the().rect()); window->set_resizable(false); @@ -31,7 +31,7 @@ int main(int argc, char** argv) auto label = GLabel::construct(widget); label->set_font(Font::default_bold_font()); - label->set_text("Serenity Operating System"); + label->set_text("SerenityOS"); label->set_size_policy(SizePolicy::Fill, SizePolicy::Fixed); label->set_preferred_size(0, 11); |