diff options
author | emersion <contact@emersion.fr> | 2018-09-14 19:29:08 +0200 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-09-14 19:29:08 +0200 |
commit | b3cb22c003d15a2f9f638af4816b803beb836f14 (patch) | |
tree | 53c140d847cbb6f835e17856b8b6b5f0210a8f26 /rootston | |
parent | 769a8e9917ab0f04404843fb712a6b0b0434c966 (diff) |
xdg-output: add _v1 suffix
Diffstat (limited to 'rootston')
-rw-r--r-- | rootston/desktop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rootston/desktop.c b/rootston/desktop.c index efb7581a..28aa4f34 100644 --- a/rootston/desktop.c +++ b/rootston/desktop.c @@ -19,10 +19,10 @@ #include <wlr/types/wlr_server_decoration.h> #include <wlr/types/wlr_wl_shell.h> #include <wlr/types/wlr_xcursor_manager.h> -#include <wlr/types/wlr_xdg_output.h> +#include <wlr/types/wlr_xdg_output_v1.h> #include <wlr/types/wlr_xdg_shell_v6.h> #include <wlr/types/wlr_xdg_shell.h> -#include <wlr/types/wlr_xdg_output.h> +#include <wlr/types/wlr_xdg_output_v1.h> #include <wlr/types/wlr_tablet_v2.h> #include <wlr/util/log.h> #include "rootston/layers.h" @@ -795,7 +795,7 @@ struct roots_desktop *desktop_create(struct roots_server *server, desktop->config = config; desktop->layout = wlr_output_layout_create(); - wlr_xdg_output_manager_create(server->wl_display, desktop->layout); + wlr_xdg_output_manager_v1_create(server->wl_display, desktop->layout); desktop->layout_change.notify = handle_layout_change; wl_signal_add(&desktop->layout->events.change, &desktop->layout_change); |