diff options
author | emersion <contact@emersion.fr> | 2018-03-30 11:01:23 -0400 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-03-30 11:01:23 -0400 |
commit | 865b0aa123172852b49df4178437e6e8a020bc60 (patch) | |
tree | 0e01d232a611b3ba57a87ce232ae9fe0c88852d4 /include | |
parent | 8ada41c27200618b2b407cb095568f660a3e9cf2 (diff) |
xwayland: rename map_notify to map for consistency
Diffstat (limited to 'include')
-rw-r--r-- | include/rootston/view.h | 4 | ||||
-rw-r--r-- | include/wlr/xwayland.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/rootston/view.h b/include/rootston/view.h index 6e746e8c..4e3859d5 100644 --- a/include/rootston/view.h +++ b/include/rootston/view.h @@ -64,8 +64,8 @@ struct roots_xwayland_surface { struct wl_listener request_resize; struct wl_listener request_maximize; struct wl_listener request_fullscreen; - struct wl_listener map_notify; - struct wl_listener unmap_notify; + struct wl_listener map; + struct wl_listener unmap; struct wl_listener surface_commit; }; diff --git a/include/wlr/xwayland.h b/include/wlr/xwayland.h index f34860aa..1ee310ea 100644 --- a/include/wlr/xwayland.h +++ b/include/wlr/xwayland.h @@ -126,8 +126,8 @@ struct wlr_xwayland_surface { struct wl_signal request_maximize; struct wl_signal request_fullscreen; - struct wl_signal map_notify; - struct wl_signal unmap_notify; + struct wl_signal map; + struct wl_signal unmap; struct wl_signal set_title; struct wl_signal set_class; struct wl_signal set_parent; |