tests: Fix leftover wl_client_add_versioned_object()

The search and replace missed this one.
dev
Kristian Høgsberg 11 years ago
parent 9a4f10f6bc
commit 442a5faa84
  1. 7
      tests/weston-test.c

@ -191,10 +191,9 @@ bind_test(struct wl_client *client, void *data, uint32_t version, uint32_t id)
struct weston_test *test = data; struct weston_test *test = data;
struct wl_resource *resource; struct wl_resource *resource;
resource = wl_client_add_versioned_object(client, &wl_test_interface, resource = wl_resource_create(client, &wl_test_interface, 1, id);
1, id); wl_resource_set_implementation(resource,
wl_resource_set_implementation(resource, &test_implementation, &test_implementation, test, NULL);
test, NULL);
notify_pointer_position(test, resource); notify_pointer_position(test, resource);
} }

Loading…
Cancel
Save