aboutsummaryrefslogtreecommitdiff
path: root/include/rootston
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-10-21 22:07:44 -0400
committerGitHub <noreply@github.com>2017-10-21 22:07:44 -0400
commite8f92838943920addcb0f80894f4e152eafa5ae4 (patch)
treec9cd07e837b454ff227fde4d7511a98c805bca27 /include/rootston
parentd4e311a1adeee7cfd2a4404d716f3e0237ead607 (diff)
parent16f35ecbeacd685e7d9905a7867d8c950e369f2e (diff)
Merge pull request #298 from raazvvann/heghe/wl_list
Replace list_t with wl_list
Diffstat (limited to 'include/rootston')
-rw-r--r--include/rootston/desktop.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/rootston/desktop.h b/include/rootston/desktop.h
index 1225bdcd..c3859afb 100644
--- a/include/rootston/desktop.h
+++ b/include/rootston/desktop.h
@@ -9,7 +9,7 @@
#include <wlr/types/wlr_xdg_shell_v6.h>
#include <wlr/types/wlr_gamma_control.h>
#include <wlr/types/wlr_screenshooter.h>
-#include <wlr/util/list.h>
+#include <wlr/types/wlr_list.h>
#include "rootston/view.h"
#include "rootston/config.h"
@@ -22,7 +22,7 @@ struct roots_output {
};
struct roots_desktop {
- list_t *views;
+ struct wlr_list *views;
struct wl_list outputs;
struct timespec last_frame;