12 lines
427 B
C++
12 lines
427 B
C++
#include "arranged_children.h"
|
|
|
|
#include "widget/mwidget.h"
|
|
|
|
void arranged_children::add_widget(const arranged_widget& in_widget_geometry) {
|
|
add_widget(in_widget_geometry.get_widget()->get_visibility(), in_widget_geometry);
|
|
}
|
|
|
|
void arranged_children::insert_widget(const arranged_widget& in_widget_geometry, size_t in_index) {
|
|
insert_widget(in_widget_geometry.get_widget()->get_visibility(), in_widget_geometry, in_index);
|
|
}
|