aboutsummaryrefslogtreecommitdiff
path: root/include/wlr
diff options
context:
space:
mode:
Diffstat (limited to 'include/wlr')
-rw-r--r--include/wlr/types/wlr_xdg_shell.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/wlr/types/wlr_xdg_shell.h b/include/wlr/types/wlr_xdg_shell.h
index 2fee1453..a54d2723 100644
--- a/include/wlr/types/wlr_xdg_shell.h
+++ b/include/wlr/types/wlr_xdg_shell.h
@@ -231,26 +231,26 @@ struct wlr_xdg_surface {
};
struct wlr_xdg_toplevel_move_event {
- struct wlr_xdg_surface *surface;
+ struct wlr_xdg_toplevel *toplevel;
struct wlr_seat_client *seat;
uint32_t serial;
};
struct wlr_xdg_toplevel_resize_event {
- struct wlr_xdg_surface *surface;
+ struct wlr_xdg_toplevel *toplevel;
struct wlr_seat_client *seat;
uint32_t serial;
uint32_t edges;
};
struct wlr_xdg_toplevel_set_fullscreen_event {
- struct wlr_xdg_surface *surface;
+ struct wlr_xdg_toplevel *toplevel;
bool fullscreen;
struct wlr_output *output;
};
struct wlr_xdg_toplevel_show_window_menu_event {
- struct wlr_xdg_surface *surface;
+ struct wlr_xdg_toplevel *toplevel;
struct wlr_seat_client *seat;
uint32_t serial;
uint32_t x, y;