aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/packet_list_store.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui/gtk/packet_list_store.c')
-rw-r--r--ui/gtk/packet_list_store.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/gtk/packet_list_store.c b/ui/gtk/packet_list_store.c
index b4483a6e05..a72a803b33 100644
--- a/ui/gtk/packet_list_store.c
+++ b/ui/gtk/packet_list_store.c
@@ -65,11 +65,6 @@ typedef struct _PacketListRecord {
frame_data *fdata;
- /** Has this record been columnized? */
- gboolean columnized;
- /** Has this record been colorized? */
- gboolean colorized;
-
/* admin stuff used by the custom list model */
#ifdef PACKET_PARANOID_CHECKS
/** position within the physical array */
@@ -78,6 +73,11 @@ typedef struct _PacketListRecord {
/** position within the visible array */
gint visible_pos;
+ /** Has this record been columnized? */
+ guint columnized : 1;
+ /** Has this record been colorized? */
+ guint colorized : 1;
+
} PacketListRecord;
static void packet_list_init(PacketList *pkg_tree);