void view_move_to_front(struct view *view);
void view_move_to_back(struct view *view);
-void view_append_children(struct view *view, struct wl_array *children);
/**
* view_get_modal_dialog() - returns any modal dialog found among this
}
}
+static void
+view_append_children(struct view *view, struct wl_array *children)
+{
+ assert(view);
+ if (view->impl->append_children) {
+ view->impl->append_children(view, children);
+ }
+}
+
static void
minimize_sub_views(struct view *view, bool minimized)
{
desktop_update_top_layer_visibility(view->server);
}
-void
-view_append_children(struct view *view, struct wl_array *children)
-{
- assert(view);
- if (view->impl->append_children) {
- view->impl->append_children(view, children);
- }
-}
-
struct view *
view_get_modal_dialog(struct view *view)
{