diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-01-10 23:19:29 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-01-10 23:19:29 +0100 |
commit | f6d2c3ed87b03062dee0bb190aa45ce1f362ada3 (patch) | |
tree | e3ca5887c5b75e996a6d0a7a61565986cff4d27e /Widgets/MsgBox.cpp | |
parent | 8626e95509c5984c331b23585bd530571239129d (diff) | |
download | serenity-f6d2c3ed87b03062dee0bb190aa45ce1f362ada3.zip |
Hook everything up to run the GUI on top of the kernel.
Okay things kinda sorta work. Both Bochs and QEMU now boot into GUI mode.
There's a ton of stuff that doesn't make sense and so many things to rework.
Still it's quite cool to have made it this far. :^)
Diffstat (limited to 'Widgets/MsgBox.cpp')
-rw-r--r-- | Widgets/MsgBox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Widgets/MsgBox.cpp b/Widgets/MsgBox.cpp index 9c8a41f1db..06bfbf0643 100644 --- a/Widgets/MsgBox.cpp +++ b/Widgets/MsgBox.cpp @@ -47,7 +47,7 @@ void MsgBox(Window* owner, String&& text) textWidth, textHeight }); - label->setText(std::move(text)); + label->setText(move(text)); auto* button = new Button(widget); button->setCaption("OK"); button->setWindowRelativeRect(buttonRect); |