xwayland/window-manager: Rename a variable for clerity

dev
Jason Ekstrand 11 years ago
parent cf4c13af98
commit 4ff4d92d7e
  1. 6
      xwayland/window-manager.c

@ -1371,15 +1371,15 @@ weston_wm_window_handle_surface_id(struct weston_wm_window *window,
* hasn't been created yet. In that case put the window on * hasn't been created yet. In that case put the window on
* the unpaired window list and continue when the surface gets * the unpaired window list and continue when the surface gets
* created. */ * created. */
uint32_t surface = client_message->data.data32[0]; uint32_t id = client_message->data.data32[0];
resource = wl_client_get_object(wm->server->client, surface); resource = wl_client_get_object(wm->server->client, id);
if (resource) { if (resource) {
window->surface_id = 0; window->surface_id = 0;
xserver_map_shell_surface(window, xserver_map_shell_surface(window,
wl_resource_get_user_data(resource)); wl_resource_get_user_data(resource));
} }
else { else {
window->surface_id = surface; window->surface_id = id;
wl_list_insert(&wm->unpaired_window_list, &window->link); wl_list_insert(&wm->unpaired_window_list, &window->link);
} }
} }

Loading…
Cancel
Save