aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/hostlist_table.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-10-04 17:27:47 +0200
committerAnders Broman <a.broman58@gmail.com>2014-10-04 16:19:29 +0000
commitfa5b76f5dc5f4fbc0e3fd7fa195c4411bc71cbad (patch)
tree44acc3557f6144fc798c747346d09241495eb3e6 /ui/gtk/hostlist_table.h
parent6d445524bc9963e464f383fc3fecc169aac13810 (diff)
GTK (hostlist_table) fix indent (use 4 spaces) and modelines info
Change-Id: I072de752df0c0e41be663889dafd0f5860a29c37 Reviewed-on: https://code.wireshark.org/review/4458 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'ui/gtk/hostlist_table.h')
-rw-r--r--ui/gtk/hostlist_table.h39
1 files changed, 26 insertions, 13 deletions
diff --git a/ui/gtk/hostlist_table.h b/ui/gtk/hostlist_table.h
index a5a269981f..0aa929247e 100644
--- a/ui/gtk/hostlist_table.h
+++ b/ui/gtk/hostlist_table.h
@@ -55,21 +55,21 @@ typedef enum {
/** Hostlist widget */
typedef struct _hostlist_table {
- const char *name; /**< the name of the table */
- const char *filter; /**< the filter used */
- gboolean use_dfilter; /**< use display filter */
- GtkWidget *win; /**< GTK window */
- GtkWidget *page_lb; /**< page label */
- GtkWidget *name_lb; /**< name label */
- GtkWidget *scrolled_window; /**< the scrolled window */
- GtkTreeView *table; /**< the GTK table */
+ const char *name; /**< the name of the table */
+ const char *filter; /**< the filter used */
+ gboolean use_dfilter; /**< use display filter */
+ GtkWidget *win; /**< GTK window */
+ GtkWidget *page_lb; /**< page label */
+ GtkWidget *name_lb; /**< name label */
+ GtkWidget *scrolled_window; /**< the scrolled window */
+ GtkTreeView *table; /**< the GTK table */
const char *default_titles[ENDP_NUM_COLUMNS+ENDP_NUM_GEOIP_COLUMNS]; /**< Column headers */
- GtkWidget *menu; /**< context menu */
- gboolean has_ports; /**< table has ports */
+ GtkWidget *menu; /**< context menu */
+ gboolean has_ports; /**< table has ports */
conv_hash_t hash; /**< hostlist hash table */
- gboolean fixed_col; /**< if switched to fixed column */
- gboolean resolve_names; /**< resolve address names? */
- gboolean geoip_visible; /**< if geoip columns are visible */
+ gboolean fixed_col; /**< if switched to fixed column */
+ gboolean resolve_names; /**< resolve address names? */
+ gboolean geoip_visible; /**< if geoip columns are visible */
} hostlist_table;
/** Init the hostlist table for the single hostlist window.
@@ -93,3 +93,16 @@ extern void init_hostlist_notebook_cb(GtkWidget *w, gpointer d);
extern void hostlist_endpoint_cb(register_ct_t* table);
#endif /* __HOSTLIST_TABLE_H__ */
+
+/*
+ * Editor modelines
+ *
+ * Local Variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * ex: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */