summaryrefslogtreecommitdiff
path: root/ui/qt/packet_list_record.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2012-12-17 23:03:21 +0000
committerGerald Combs <gerald@wireshark.org>2012-12-17 23:03:21 +0000
commit77e6140ba99ca1785972bb8455877fc33350990a (patch)
tree779b3abea24607c375535fd4b9ca5dadb0ea56b8 /ui/qt/packet_list_record.h
parentdc908733eaf62b0a3506dca52f2412b92a6cbf7c (diff)
downloadwireshark-77e6140ba99ca1785972bb8455877fc33350990a.tar.gz
Implement the frame mark, ignore, and time reference actions. Update the
text of a few menu items. svn path=/trunk/; revision=46576
Diffstat (limited to 'ui/qt/packet_list_record.h')
-rw-r--r--ui/qt/packet_list_record.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ui/qt/packet_list_record.h b/ui/qt/packet_list_record.h
index 8112191ac8..75db270cb8 100644
--- a/ui/qt/packet_list_record.h
+++ b/ui/qt/packet_list_record.h
@@ -43,22 +43,22 @@ public:
private:
/** The column text for some columns */
- gchar **col_text;
+ gchar **col_text_;
/**< The length of the column text strings in 'col_text' */
- guint *col_text_len;
+ guint *col_text_len_;
- frame_data *fdata;
+ frame_data *fdata_;
/** Has this record been columnized? */
- gboolean columnized;
+ gboolean columnized_;
/** Has this record been colorized? */
- gboolean colorized;
+ gboolean colorized_;
/* admin stuff used by the custom list model */
/** position within the physical array */
- guint physical_pos;
+ guint physical_pos_;
/** position within the visible array */
- gint visible_pos;
+ gint visible_pos_;
};