Rename packet_list_dissect_and_cache => packet_list_dissect_and_cache_iter

svn path=/trunk/; revision=29781
This commit is contained in:
Kovarththanan Rajaratnam 2009-09-07 19:50:19 +00:00
parent 3efea601d4
commit 4662b8c326
3 changed files with 3 additions and 3 deletions

View File

@ -630,7 +630,7 @@ show_cell_data_func(GtkTreeViewColumn *col _U_, GtkCellRenderer *renderer,
if (!record->columnized || !record->colorized) {
g_assert((fdata->col_text == NULL && !record->columnized) ||
(fdata->col_text != NULL && record->columnized));
packet_list_dissect_and_cache(packetlist, iter,
packet_list_dissect_and_cache_iter(packetlist, iter,
!record->columnized,
!record->colorized);
}

View File

@ -1028,7 +1028,7 @@ packet_list_recreate_visible_rows(PacketList *packet_list)
}
void
packet_list_dissect_and_cache(PacketList *packet_list, GtkTreeIter *iter, gboolean dissect_columns, gboolean dissect_color)
packet_list_dissect_and_cache_iter(PacketList *packet_list, GtkTreeIter *iter, gboolean dissect_columns, gboolean dissect_color)
{
PacketListRecord *record;

View File

@ -110,7 +110,7 @@ guint packet_list_recreate_visible_rows(PacketList *packet_list);
gboolean packet_list_visible_record(PacketList *packet_list, GtkTreeIter *iter);
gint packet_list_append_record(PacketList *packet_list, frame_data *fdata);
void packet_list_change_record(PacketList *packet_list, guint row, gint col, column_info *cinfo);
void packet_list_dissect_and_cache(PacketList *packet_list, GtkTreeIter *iter, gboolean dissect_columns, gboolean dissect_color);
void packet_list_dissect_and_cache_iter(PacketList *packet_list, GtkTreeIter *iter, gboolean dissect_columns, gboolean dissect_color);
void packet_list_reset_colorized(PacketList *packet_list);
const char* packet_list_get_widest_column_string(PacketList *packet_list, gint col);