diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-10-13 18:06:04 (EDT) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-10-13 18:06:04 (EDT) |
commit | 6c54e00ee65a4b89bfd1b0a9f79d7fb0313774c6 (patch) | |
tree | 4192b82ddf8d08d83cb73c12640a9fac793c1445 /src | |
parent | df28e2de0582a78faa46f6b4a2a45611f3bc9fa2 (diff) | |
download | marquee-6c54e00ee65a4b89bfd1b0a9f79d7fb0313774c6.zip marquee-6c54e00ee65a4b89bfd1b0a9f79d7fb0313774c6.tar.gz marquee-6c54e00ee65a4b89bfd1b0a9f79d7fb0313774c6.tar.bz2 |
src/tab.h: Adjust horizontal alignment of struct members
Diffstat (limited to 'src')
-rw-r--r-- | src/tab.h | 38 |
1 files changed, 19 insertions, 19 deletions
@@ -32,25 +32,25 @@ typedef struct MqTab MqTab; #include "window.h" struct MqTab { - MqTab *root; - MqTab *parent; - MqTab *prev; - MqTab *next; - MqTab *first_child; - MqTab *last_child; - guint position; - guint tree_size; - MqApplication *application; - MqWindow *window; - GtkWidget *container; - GtkWidget *tab; - GtkWidget *tab_image; - GtkWidget *tab_label; - const gchar *title; - WebKitWebView *web_view; - GtkWidget *popover; - gboolean scrolling; - gchar *scrolled_title; + MqTab *root; + MqTab *parent; + MqTab *prev; + MqTab *next; + MqTab *first_child; + MqTab *last_child; + guint position; + guint tree_size; + MqApplication *application; + MqWindow *window; + GtkWidget *container; + GtkWidget *tab; + GtkWidget *tab_image; + GtkWidget *tab_label; + const gchar *title; + WebKitWebView *web_view; + GtkWidget *popover; + gboolean scrolling; + gchar *scrolled_title; }; MqTab * |