summaryrefslogtreecommitdiff
path: root/DevTools/Inspector
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 /DevTools/Inspector
parentdccf335d5b1aa06e44f9262c95b176c42ba2cf1e (diff)
downloadserenity-799b0a4fa8cc6eaa61845e62312d299ba9cd05c4.zip
LibGUI: Rename {H,V}BoxLayout => {Horizontal,Vertical}BoxLayout
Diffstat (limited to 'DevTools/Inspector')
-rw-r--r--DevTools/Inspector/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/DevTools/Inspector/main.cpp b/DevTools/Inspector/main.cpp
index 95af8234fd..6b746ebdbd 100644
--- a/DevTools/Inspector/main.cpp
+++ b/DevTools/Inspector/main.cpp
@@ -61,7 +61,7 @@ int main(int argc, char** argv)
auto widget = GUI::Widget::construct();
window->set_main_widget(widget);
widget->set_fill_with_background_color(true);
- widget->set_layout(make<GUI::VBoxLayout>());
+ widget->set_layout(make<GUI::VerticalBoxLayout>());
auto splitter = GUI::HorizontalSplitter::construct(widget);