1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 13:05:07 +00:00

HackStudio: Fix cpp-gui template

This commit is contained in:
NoahR02 2022-08-31 00:02:23 -04:00 committed by Linus Groh
parent f2da577e77
commit 406dff16d1
3 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@ int main(int argc, char** argv)
auto button = GUI::Button::construct();
button->set_text("Click me!");
button->on_click = [&](auto) {
GUI::MessageBox::show(window, "Hello friends!", ":^)");
GUI::MessageBox::show(window, "Hello friends!"sv, ":^)"sv);
};
window->set_main_widget(button);