Reorder the xdg_shell implementations to fit the spec'd order

This commit is contained in:
Jasper St. Pierre
2014-02-01 18:35:15 -05:00
parent 63a1410348
commit 63a9c336f3
2 changed files with 30 additions and 30 deletions
+14 -14
View File
@@ -3836,20 +3836,6 @@ handle_surface_configure(void *data, struct xdg_surface *xdg_surface,
window_schedule_resize(window, width, height);
}
static void
handle_surface_focused_set(void *data, struct xdg_surface *xdg_surface)
{
struct window *window = data;
window->focused = 1;
}
static void
handle_surface_focused_unset(void *data, struct xdg_surface *xdg_surface)
{
struct window *window = data;
window->focused = 0;
}
static void
handle_surface_request_set_maximized(void *data, struct xdg_surface *xdg_surface)
{
@@ -3878,6 +3864,20 @@ handle_surface_request_unset_fullscreen(void *data, struct xdg_surface *xdg_surf
window_set_fullscreen(window, 0);
}
static void
handle_surface_focused_set(void *data, struct xdg_surface *xdg_surface)
{
struct window *window = data;
window->focused = 1;
}
static void
handle_surface_focused_unset(void *data, struct xdg_surface *xdg_surface)
{
struct window *window = data;
window->focused = 0;
}
static void
handle_surface_delete(void *data, struct xdg_surface *xdg_surface)
{