From 6c54e00ee65a4b89bfd1b0a9f79d7fb0313774c6 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Fri, 13 Oct 2017 18:06:04 -0400 Subject: src/tab.h: Adjust horizontal alignment of struct members --- (limited to 'src') diff --git a/src/tab.h b/src/tab.h index 6abdc43..648290e 100644 --- a/src/tab.h +++ b/src/tab.h @@ -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 * -- cgit v0.9.1