summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorAlexander Preisinger <alexander.preisinger@gmail.com>2014-01-08 16:16:43 +0100
committerAlexander Preisinger <alexander.preisinger@gmail.com>2014-01-08 16:23:19 +0100
commit74d9504b658cd2b0ecb64f6ecc09ef3cbdc52e04 (patch)
treee98b5e21342abc04b92dcc724bc9647ea1a2d94e /video
parentfa5f1e7800711322058124d1d0c3e26813ce7aa3 (diff)
downloadmpv-74d9504b658cd2b0ecb64f6ecc09ef3cbdc52e04.tar.bz2
mpv-74d9504b658cd2b0ecb64f6ecc09ef3cbdc52e04.tar.xz
wayland: remove set_user_data from seat_listener
The user_data is passed on add_listener and can later be changed with set_user_data. But because we don't want to change it later and because it is the same object remove the set_user_data call. This might be a copy&paste leftover from the initial draft for the wayland backend.
Diffstat (limited to 'video')
-rw-r--r--video/out/wayland_common.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/video/out/wayland_common.c b/video/out/wayland_common.c
index 9fdc739fe0..e3d93b0c12 100644
--- a/video/out/wayland_common.c
+++ b/video/out/wayland_common.c
@@ -444,7 +444,6 @@ static void seat_handle_capabilities(void *data,
if ((caps & WL_SEAT_CAPABILITY_KEYBOARD) && !wl->input.keyboard) {
wl->input.keyboard = wl_seat_get_keyboard(seat);
- wl_keyboard_set_user_data(wl->input.keyboard, wl);
wl_keyboard_add_listener(wl->input.keyboard, &keyboard_listener, wl);
}
else if (!(caps & WL_SEAT_CAPABILITY_KEYBOARD) && wl->input.keyboard) {
@@ -453,7 +452,6 @@ static void seat_handle_capabilities(void *data,
}
if ((caps & WL_SEAT_CAPABILITY_POINTER) && !wl->input.pointer) {
wl->input.pointer = wl_seat_get_pointer(seat);
- wl_pointer_set_user_data(wl->input.pointer, wl);
wl_pointer_add_listener(wl->input.pointer, &pointer_listener, wl);
}
else if (!(caps & WL_SEAT_CAPABILITY_POINTER) && wl->input.pointer) {