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