xwm.h: fix guard ifdef and remove wlr_ prefix from xwm_atoms_contains

This commit is contained in:
Dominique Martinet 2018-03-04 11:16:14 +01:00
parent d9a724c4a2
commit 2910972b25
3 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,5 @@
#ifndef WLR_XWM_H
#define WLR_XWM_H
#ifndef XWAYLAND_XWM_H
#define XWAYLAND_XWM_H
#include <wayland-server-core.h>
#include <wlr/xwayland.h>
@ -129,7 +129,7 @@ void xwm_selection_finish(struct wlr_xwm *xwm);
void xwm_set_seat(struct wlr_xwm *xwm, struct wlr_seat *seat);
bool wlr_xwm_atoms_contains(struct wlr_xwm *xwm, xcb_atom_t *atoms,
bool xwm_atoms_contains(struct wlr_xwm *xwm, xcb_atom_t *atoms,
size_t num_atoms, enum atom_name needle);
#endif