mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-05 13:05:59 +01:00
xdg-output: remove dead code
wlroots current requires wayland-protocols 1.24, so this if is no longer needed and hasn't been for a while.
This commit is contained in:
parent
77951968dc
commit
2c59435e82
1 changed files with 1 additions and 7 deletions
|
@ -253,12 +253,6 @@ static void handle_display_destroy(struct wl_listener *listener, void *data) {
|
|||
|
||||
struct wlr_xdg_output_manager_v1 *wlr_xdg_output_manager_v1_create(
|
||||
struct wl_display *display, struct wlr_output_layout *layout) {
|
||||
// TODO: require wayland-protocols 1.18 and remove this condition
|
||||
int version = OUTPUT_MANAGER_VERSION;
|
||||
if (version > zxdg_output_manager_v1_interface.version) {
|
||||
version = zxdg_output_manager_v1_interface.version;
|
||||
}
|
||||
|
||||
struct wlr_xdg_output_manager_v1 *manager =
|
||||
calloc(1, sizeof(struct wlr_xdg_output_manager_v1));
|
||||
if (manager == NULL) {
|
||||
|
@ -266,7 +260,7 @@ struct wlr_xdg_output_manager_v1 *wlr_xdg_output_manager_v1_create(
|
|||
}
|
||||
manager->layout = layout;
|
||||
manager->global = wl_global_create(display,
|
||||
&zxdg_output_manager_v1_interface, version, manager,
|
||||
&zxdg_output_manager_v1_interface, OUTPUT_MANAGER_VERSION, manager,
|
||||
output_manager_bind);
|
||||
if (!manager->global) {
|
||||
free(manager);
|
||||
|
|
Loading…
Reference in a new issue