mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:27:35 +00:00
LibGUI: Rename {H,V}BoxLayout => {Horizontal,Vertical}BoxLayout
This commit is contained in:
parent
dccf335d5b
commit
799b0a4fa8
49 changed files with 114 additions and 114 deletions
|
@ -59,13 +59,13 @@ int main(int argc, char** argv)
|
|||
|
||||
auto horizontal_container = GUI::Widget::construct();
|
||||
window->set_main_widget(horizontal_container);
|
||||
horizontal_container->set_layout(make<GUI::HBoxLayout>());
|
||||
horizontal_container->set_layout(make<GUI::HorizontalBoxLayout>());
|
||||
horizontal_container->layout()->set_spacing(0);
|
||||
|
||||
new ToolboxWidget(horizontal_container);
|
||||
|
||||
auto vertical_container = GUI::Widget::construct(horizontal_container.ptr());
|
||||
vertical_container->set_layout(make<GUI::VBoxLayout>());
|
||||
vertical_container->set_layout(make<GUI::VerticalBoxLayout>());
|
||||
vertical_container->layout()->set_spacing(0);
|
||||
|
||||
auto paintable_widget = PaintableWidget::construct(vertical_container);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue