diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-10-08 13:28:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-08 13:28:26 -0400 |
commit | 3f4ccd0558a962558625ca61cfb7320cffd33b8a (patch) | |
tree | cfe7be643f0dbb366a0a45ff63f753f399ac613b /rootston/wl_shell.c | |
parent | 74d31983b5dac54e0692c363d57562dcec1b200e (diff) | |
parent | 7b6d785f52a8f5600a2d4763b5bc093d22bd875b (diff) |
Merge pull request #244 from emersion/rename-surface-events
Rename wlr_surface->signals to events
Diffstat (limited to 'rootston/wl_shell.c')
-rw-r--r-- | rootston/wl_shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rootston/wl_shell.c b/rootston/wl_shell.c index eb977367..009a8c06 100644 --- a/rootston/wl_shell.c +++ b/rootston/wl_shell.c @@ -102,7 +102,7 @@ void handle_wl_shell_surface(struct wl_listener *listener, void *data) { wl_list_init(&roots_surface->request_set_maximized.link); wl_list_init(&roots_surface->surface_commit.link); roots_surface->surface_commit.notify = handle_surface_commit; - wl_signal_add(&surface->surface->signals.commit, + wl_signal_add(&surface->surface->events.commit, &roots_surface->surface_commit); struct roots_view *view = calloc(1, sizeof(struct roots_view)); |