aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2018-03-30 16:16:52 -0400
committerGitHub <noreply@github.com>2018-03-30 16:16:52 -0400
commit212d957c69b15e57a791eec52de34dcde4241e86 (patch)
treeca322e83acc15308f6aeb516a76a0c1fbd324c8c /include
parente8cb5e89e915294b410a5349ccbdae40a456d0ff (diff)
parent865b0aa123172852b49df4178437e6e8a020bc60 (diff)
Merge pull request #779 from emersion/xwayland-map-consistency
xwayland: rename map_notify to map for consistency
Diffstat (limited to 'include')
-rw-r--r--include/rootston/view.h4
-rw-r--r--include/wlr/xwayland.h4
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;