aboutsummaryrefslogtreecommitdiff
path: root/backend/wayland
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-02-12 10:36:43 +0100
committeremersion <contact@emersion.fr>2018-02-12 10:36:43 +0100
commit10ecf871f27ddd7170b6fb9ee7bd055b9cb3423c (patch)
tree6f7fd24b33ae1cf0e2b83c55778d1b2bafb08b6f /backend/wayland
parent5e58d46cc1a90810e3ee76203cee8ca2f14fb462 (diff)
Remove wlr_backend.events.{output_remove,device_remove}
Diffstat (limited to 'backend/wayland')
-rw-r--r--backend/wayland/output.c2
-rw-r--r--backend/wayland/wl_seat.c9
2 files changed, 5 insertions, 6 deletions
diff --git a/backend/wayland/output.c b/backend/wayland/output.c
index f2336549..b1cc6836 100644
--- a/backend/wayland/output.c
+++ b/backend/wayland/output.c
@@ -339,7 +339,7 @@ struct wlr_output *wlr_wl_output_create(struct wlr_backend *_backend) {
wl_list_insert(&backend->outputs, &output->link);
wlr_output_update_enabled(wlr_output, true);
- wlr_signal_emit_safe(&backend->backend.events.output_add, wlr_output);
+ wlr_signal_emit_safe(&backend->backend.events.new_output, wlr_output);
return wlr_output;
error:
diff --git a/backend/wayland/wl_seat.c b/backend/wayland/wl_seat.c
index 2018f449..18114119 100644
--- a/backend/wayland/wl_seat.c
+++ b/backend/wayland/wl_seat.c
@@ -193,9 +193,8 @@ static struct wl_keyboard_listener keyboard_listener = {
.repeat_info = keyboard_handle_repeat_info
};
-static void input_device_destroy(struct wlr_input_device *_dev) {
- struct wlr_wl_input_device *dev = (struct wlr_wl_input_device *)_dev;
- wlr_signal_emit_safe(&dev->backend->backend.events.input_remove, &dev->wlr_input_device);
+static void input_device_destroy(struct wlr_input_device *wlr_dev) {
+ struct wlr_wl_input_device *dev = (struct wlr_wl_input_device *)wlr_dev;
if (dev->resource) {
wl_proxy_destroy(dev->resource);
}
@@ -257,7 +256,7 @@ static void seat_handle_capabilities(void *data, struct wl_seat *wl_seat,
wlr_device->pointer = &wlr_wl_pointer->wlr_pointer;
wlr_pointer_init(wlr_device->pointer, NULL);
wlr_wl_device->resource = wl_pointer;
- wlr_signal_emit_safe(&backend->backend.events.input_add, wlr_device);
+ wlr_signal_emit_safe(&backend->backend.events.new_input, wlr_device);
backend->pointer = wl_pointer;
}
if ((caps & WL_SEAT_CAPABILITY_KEYBOARD)) {
@@ -281,7 +280,7 @@ static void seat_handle_capabilities(void *data, struct wl_seat *wl_seat,
struct wl_keyboard *wl_keyboard = wl_seat_get_keyboard(wl_seat);
wl_keyboard_add_listener(wl_keyboard, &keyboard_listener, wlr_device);
wlr_wl_device->resource = wl_keyboard;
- wlr_signal_emit_safe(&backend->backend.events.input_add, wlr_device);
+ wlr_signal_emit_safe(&backend->backend.events.new_input, wlr_device);
}
}