diff options
author | David Eklov <david.eklov@gmail.com> | 2016-07-06 01:08:54 -0500 |
---|---|---|
committer | David Eklov <david.eklov@gmail.com> | 2016-07-06 01:08:54 -0500 |
commit | b9d8cbabdd42b8b65852fac5d8d8b01bbdabb280 (patch) | |
tree | d7a5edd481a0b8961eee20d3008b1fbf6ba51ee1 /include | |
parent | c8a64305fd746ab1b33367d3ffcc9fa054221717 (diff) |
Fix formatting guide violations (spaces instead of tabs)
Diffstat (limited to 'include')
-rw-r--r-- | include/client/window.h | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/include/client/window.h b/include/client/window.h index b5cc1880..7be4fff3 100644 --- a/include/client/window.h +++ b/include/client/window.h @@ -12,19 +12,19 @@ struct window; struct buffer { - struct wl_buffer *buffer; - cairo_surface_t *surface; - cairo_t *cairo; - PangoContext *pango; - uint32_t width, height; - bool busy; + struct wl_buffer *buffer; + cairo_surface_t *surface; + cairo_t *cairo; + PangoContext *pango; + uint32_t width, height; + bool busy; }; struct cursor { - struct wl_surface *surface; - struct wl_cursor_theme *cursor_theme; - struct wl_cursor *cursor; - struct wl_poitner *pointer; + struct wl_surface *surface; + struct wl_cursor_theme *cursor_theme; + struct wl_cursor *cursor; + struct wl_poitner *pointer; }; struct pointer_input { @@ -35,16 +35,16 @@ struct pointer_input { }; struct window { - struct registry *registry; - struct buffer buffers[2]; - struct buffer *buffer; - struct wl_surface *surface; - struct wl_shell_surface *shell_surface; - struct wl_callback *frame_cb; - struct cursor cursor; - uint32_t width, height; - char *font; - cairo_t *cairo; + struct registry *registry; + struct buffer buffers[2]; + struct buffer *buffer; + struct wl_surface *surface; + struct wl_shell_surface *shell_surface; + struct wl_callback *frame_cb; + struct cursor cursor; + uint32_t width, height; + char *font; + cairo_t *cairo; struct pointer_input pointer_input; }; |