wayland: remove all usages of wayl_terminal_from_surface()

Use the 'user data' pointer from the wayland surface instead.
This commit is contained in:
Daniel Eklöf 2020-02-29 12:13:58 +01:00
parent 43c0551806
commit c917a74f48
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 6 additions and 19 deletions

View file

@ -1150,19 +1150,6 @@ wayl_reload_cursor_theme(struct wayland *wayl, struct terminal *term)
return render_xcursor_set(term);
}
struct terminal *
wayl_terminal_from_surface(struct wayland *wayl, struct wl_surface *surface)
{
tll_foreach(wayl->terms, it) {
if (term_surface_kind(it->item, surface) != TERM_SURF_NONE)
return it->item;
}
assert(false);
LOG_WARN("surface %p doesn't map to a terminal", surface);
return NULL;
}
void
wayl_flush(struct wayland *wayl)
{