summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2017-03-10 21:40:04 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2017-03-10 21:40:21 -0500
commitd5c338d9ee9d0d4f83e436d2e161f8cde3c6a1b4 (patch)
treeeecef9a6f460cbb9a9e2f3791a58b9a8d1bd1d1b /include
parentMerge pull request #1105 from zandrmartin/fix-workspace-output-assignment (diff)
downloadsway-d5c338d9ee9d0d4f83e436d2e161f8cde3c6a1b4.tar.gz
sway-d5c338d9ee9d0d4f83e436d2e161f8cde3c6a1b4.tar.zst
sway-d5c338d9ee9d0d4f83e436d2e161f8cde3c6a1b4.zip
Correct indentation
Diffstat (limited to 'include')
-rw-r--r--include/client/registry.h38
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 {
31}; 31};
32 32
33struct output_state { 33struct output_state {
34 struct wl_output *output; 34 struct wl_output *output;
35 uint32_t flags; 35 uint32_t flags;
36 uint32_t width, height; 36 uint32_t width, height;
37 uint32_t scale; 37 uint32_t scale;
38}; 38};
39 39
40struct xkb { 40struct xkb {
41 struct xkb_state *state; 41 struct xkb_state *state;
42 struct xkb_context *context; 42 struct xkb_context *context;
43 struct xkb_keymap *keymap; 43 struct xkb_keymap *keymap;
44 xkb_mod_mask_t masks[MASK_LAST]; 44 xkb_mod_mask_t masks[MASK_LAST];
45}; 45};
46 46
47struct input { 47struct input {
@@ -56,17 +56,17 @@ struct input {
56}; 56};
57 57
58struct registry { 58struct registry {
59 struct wl_compositor *compositor; 59 struct wl_compositor *compositor;
60 struct wl_display *display; 60 struct wl_display *display;
61 struct wl_pointer *pointer; 61 struct wl_pointer *pointer;
62 struct wl_keyboard *keyboard; 62 struct wl_keyboard *keyboard;
63 struct wl_seat *seat; 63 struct wl_seat *seat;
64 struct wl_shell *shell; 64 struct wl_shell *shell;
65 struct wl_shm *shm; 65 struct wl_shm *shm;
66 struct desktop_shell *desktop_shell; 66 struct desktop_shell *desktop_shell;
67 struct lock *swaylock; 67 struct lock *swaylock;
68 struct input *input; 68 struct input *input;
69 list_t *outputs; 69 list_t *outputs;
70}; 70};
71 71
72struct registry *registry_poll(void); 72struct registry *registry_poll(void);