diff options
| author | Zandr Martin <[email protected]> | 2017-03-13 07:35:12 -0400 | 
|---|---|---|
| committer | Zandr Martin <[email protected]> | 2017-03-13 07:35:12 -0400 | 
| commit | b507462d1c66e11cce76e069a508621dc9599f07 (patch) | |
| tree | 52cc52fb0ec42085c37bee5f4f2e5c5f10cf2631 /include/client | |
| parent | 18450dd16a3909d0ea581f5f9cad4128751870cc (diff) | |
| parent | 2e1083f52cbec40ed00df27dd1fb5b4d42d9254b (diff) | |
Merge branch 'master' of git://github.com/SirCmpwn/sway into new-command-aliases
Diffstat (limited to 'include/client')
| -rw-r--r-- | include/client/registry.h | 38 | 
1 files changed, 19 insertions, 19 deletions
diff --git a/include/client/registry.h b/include/client/registry.h index 24b4d358..9dfbd835 100644 --- a/include/client/registry.h +++ b/include/client/registry.h @@ -31,17 +31,17 @@ enum mask {  };  struct output_state { -        struct wl_output *output; -        uint32_t flags; -        uint32_t width, height; -		uint32_t scale; +	struct wl_output *output; +	uint32_t flags; +	uint32_t width, height; +	uint32_t scale;  };  struct xkb { -        struct xkb_state *state; -        struct xkb_context *context; -        struct xkb_keymap *keymap; -        xkb_mod_mask_t masks[MASK_LAST]; +	struct xkb_state *state; +	struct xkb_context *context; +	struct xkb_keymap *keymap; +	xkb_mod_mask_t masks[MASK_LAST];  };  struct input { @@ -56,17 +56,17 @@ struct input {  };  struct registry { -        struct wl_compositor *compositor; -        struct wl_display *display; -        struct wl_pointer *pointer; -        struct wl_keyboard *keyboard; -        struct wl_seat *seat; -        struct wl_shell *shell; -        struct wl_shm *shm; -        struct desktop_shell *desktop_shell; -        struct lock *swaylock; -        struct input *input; -        list_t *outputs; +	struct wl_compositor *compositor; +	struct wl_display *display; +	struct wl_pointer *pointer; +	struct wl_keyboard *keyboard; +	struct wl_seat *seat; +	struct wl_shell *shell; +	struct wl_shm *shm; +	struct desktop_shell *desktop_shell; +	struct lock *swaylock; +	struct input *input; +	list_t *outputs;  };  struct registry *registry_poll(void);  | 
