diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-03-31 00:39:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-31 00:39:30 -0400 |
commit | 8ed0e9f34341c77a9be6c0ab98ed18f83dca2c0d (patch) | |
tree | e407a19eeb1c5c844fed2cdd7b8efb1ecd6077f1 | |
parent | 30416123632cc0d52d8610036fc129ceb4cc02b3 (diff) | |
parent | 90fbab6f390da0e8f2b7f4b39b6766e4534467b7 (diff) |
Merge pull request #789 from emersion/xwayland-h-style
xwyaland: fix style issues
-rw-r--r-- | include/wlr/xwayland.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/include/wlr/xwayland.h b/include/wlr/xwayland.h index 1ee310ea..9b9d9cf9 100644 --- a/include/wlr/xwayland.h +++ b/include/wlr/xwayland.h @@ -166,21 +166,23 @@ void wlr_xwayland_set_cursor(struct wlr_xwayland *wlr_xwayland, int32_t hotspot_x, int32_t hotspot_y); void wlr_xwayland_surface_activate(struct wlr_xwayland_surface *surface, - bool activated); + bool activated); void wlr_xwayland_surface_configure(struct wlr_xwayland_surface *surface, - int16_t x, int16_t y, uint16_t width, uint16_t height); + int16_t x, int16_t y, uint16_t width, uint16_t height); void wlr_xwayland_surface_close(struct wlr_xwayland_surface *surface); void wlr_xwayland_surface_set_maximized(struct wlr_xwayland_surface *surface, - bool maximized); + bool maximized); void wlr_xwayland_surface_set_fullscreen(struct wlr_xwayland_surface *surface, - bool fullscreen); + bool fullscreen); void wlr_xwayland_set_seat(struct wlr_xwayland *xwayland, - struct wlr_seat *seat); + struct wlr_seat *seat); + +bool wlr_xwayland_surface_is_unmanaged( + const struct wlr_xwayland_surface *surface); -bool wlr_xwayland_surface_is_unmanaged(const struct wlr_xwayland_surface *surface); #endif |