Rename remaining refs to wlr_list

This commit is contained in:
Drew DeVault 2017-10-21 22:00:04 -04:00
parent d3f0878d71
commit 169b68b17c
14 changed files with 51 additions and 51 deletions

View file

@ -9,7 +9,7 @@
#include <wlr/backend/session.h>
#include <wlr/backend/interface.h>
#include <wlr/interfaces/wlr_output.h>
#include <wlr/util/list.h>
#include <wlr/types/wlr_list.h>
#include <wlr/util/log.h>
#include <wlr/egl.h>
#include "backend/drm/drm.h"

View file

@ -99,7 +99,7 @@ static void wlr_libinput_backend_destroy(struct wlr_backend *_backend) {
}
struct wlr_libinput_backend *backend = (struct wlr_libinput_backend *)_backend;
for (size_t i = 0; i < backend->wlr_device_lists->length; i++) {
list_t *wlr_devices = backend->wlr_device_lists->items[i];
struct wlr_list *wlr_devices = backend->wlr_device_lists->items[i];
for (size_t j = 0; j < wlr_devices->length; j++) {
struct wlr_input_device *wlr_dev = wlr_devices->items[j];
wl_signal_emit(&backend->backend.events.input_remove, wlr_dev);