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:
Scott Anderson 2018-11-11 11:48:45 +13:00
parent 4aff85cc8e
commit 51a283cbe4
4 changed files with 34 additions and 34 deletions

View file

@ -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;
}