Comment out some unused variables.

svn path=/trunk/; revision=51557
This commit is contained in:
Gerald Combs 2013-08-28 01:38:23 +00:00
parent 5c851858d9
commit c1c6545e30
2 changed files with 9 additions and 7 deletions

View File

@ -24,7 +24,9 @@
#include "packet_list_record.h"
PacketListRecord::PacketListRecord(frame_data *frameData) :
col_text_(NULL), col_text_len_(NULL), fdata_(frameData)
//col_text_(NULL),
//col_text_len_(NULL),
fdata_(frameData)
{
}

View File

@ -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_;
/** 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_;
};