summaryrefslogtreecommitdiff
path: root/Demos/HelloWorld
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-02-06 14:44:13 +0100
committerAndreas Kling <kling@serenityos.org>2020-02-06 14:44:13 +0100
commit799b0a4fa8cc6eaa61845e62312d299ba9cd05c4 (patch)
treebc6752215c131027028751a1aff9ede15996fa53 /Demos/HelloWorld
parentdccf335d5b1aa06e44f9262c95b176c42ba2cf1e (diff)
downloadserenity-799b0a4fa8cc6eaa61845e62312d299ba9cd05c4.zip
LibGUI: Rename {H,V}BoxLayout => {Horizontal,Vertical}BoxLayout
Diffstat (limited to 'Demos/HelloWorld')
-rw-r--r--Demos/HelloWorld/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/HelloWorld/main.cpp b/Demos/HelloWorld/main.cpp
index 1e65f0d413..01ca63ba9a 100644
--- a/Demos/HelloWorld/main.cpp
+++ b/Demos/HelloWorld/main.cpp
@@ -43,7 +43,7 @@ int main(int argc, char** argv)
window->set_main_widget(main_widget);
main_widget->set_fill_with_background_color(true);
main_widget->set_background_color(Color::White);
- main_widget->set_layout(make<GUI::VBoxLayout>());
+ main_widget->set_layout(make<GUI::VerticalBoxLayout>());
main_widget->layout()->set_margins({ 4, 4, 4, 4 });
auto label = GUI::Label::construct(main_widget);