backend/drm: make listener names more idiomatic

Use the "<object>_<event>" notation for listeners, use
"handle_<listener>" for handlers.
This commit is contained in:
Simon Ser 2020-12-25 14:45:00 +01:00
parent b9460ab724
commit c5f239f411
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
2 changed files with 13 additions and 14 deletions

View file

@ -85,8 +85,8 @@ struct wlr_drm_backend {
struct wl_listener display_destroy;
struct wl_listener session_destroy;
struct wl_listener session_signal;
struct wl_listener drm_invalidated;
struct wl_listener session_active;
struct wl_listener dev_change;
struct wl_list outputs;