summaryrefslogtreecommitdiff
path: root/Widgets/MsgBox.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-01-10 23:19:29 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-01-10 23:19:29 +0100
commitf6d2c3ed87b03062dee0bb190aa45ce1f362ada3 (patch)
treee3ca5887c5b75e996a6d0a7a61565986cff4d27e /Widgets/MsgBox.cpp
parent8626e95509c5984c331b23585bd530571239129d (diff)
downloadserenity-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.cpp2
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);