aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/packet_list_store.c
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2012-07-26 09:36:15 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2012-07-26 09:36:15 +0000
commitb90fabe60d052ece88a8cbdfe27c8f99df281ce2 (patch)
treebafff591f8955c83a71376663fa279b31c6e285c /ui/gtk/packet_list_store.c
parentd9b0f407497adbeec8e45b758158dd1e393d96f8 (diff)
Make columnized and colorized bit field.
svn path=/trunk/; revision=44034
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);