mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-12-16 08:56:26 -05:00
backend/x11: Rename xcb_conn to xcb
When the Xlib connection is removed, this _conn suffix is going to be pointless. I'm removing this preemtively for that.
This commit is contained in:
parent
4aff85cc8e
commit
51a283cbe4
4 changed files with 34 additions and 34 deletions
|
|
@ -166,9 +166,9 @@ void update_x11_pointer_position(struct wlr_x11_output *output,
|
|||
struct wlr_x11_backend *x11 = output->x11;
|
||||
|
||||
xcb_query_pointer_cookie_t cookie =
|
||||
xcb_query_pointer(x11->xcb_conn, output->win);
|
||||
xcb_query_pointer(x11->xcb, output->win);
|
||||
xcb_query_pointer_reply_t *reply =
|
||||
xcb_query_pointer_reply(x11->xcb_conn, cookie, NULL);
|
||||
xcb_query_pointer_reply(x11->xcb, cookie, NULL);
|
||||
if (!reply) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue