mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 07:05:07 +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
|
@ -49,15 +49,15 @@ void ColorPicker::build()
|
|||
{
|
||||
auto horizontal_container = Widget::construct();
|
||||
horizontal_container->set_fill_with_background_color(true);
|
||||
horizontal_container->set_layout(make<HBoxLayout>());
|
||||
horizontal_container->set_layout(make<HorizontalBoxLayout>());
|
||||
horizontal_container->layout()->set_margins({ 4, 4, 4, 4 });
|
||||
set_main_widget(horizontal_container);
|
||||
|
||||
auto left_vertical_container = Widget::construct(horizontal_container.ptr());
|
||||
left_vertical_container->set_layout(make<VBoxLayout>());
|
||||
left_vertical_container->set_layout(make<VerticalBoxLayout>());
|
||||
|
||||
auto right_vertical_container = Widget::construct(horizontal_container.ptr());
|
||||
right_vertical_container->set_layout(make<VBoxLayout>());
|
||||
right_vertical_container->set_layout(make<VerticalBoxLayout>());
|
||||
|
||||
enum RGBComponent {
|
||||
Red,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue