stats_tree: rename shadow variable

Change-Id: I5b3272cc4df728c70d6b0370b0d8a6d3482a0c6c
Reviewed-on: https://code.wireshark.org/review/16100
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Dario Lombardo 2016-06-23 17:31:49 +02:00 committed by Anders Broman
parent 581d44f4ad
commit b845e29d97
1 changed files with 2 additions and 2 deletions

View File

@ -222,10 +222,10 @@ WS_DLL_PUBLIC gint stats_tree_get_default_sort_col (stats_tree *st);
WS_DLL_PUBLIC gboolean stats_tree_is_default_sort_DESC (stats_tree *st);
/** returns the column name for a given column index */
WS_DLL_PUBLIC const gchar* stats_tree_get_column_name (gint index);
WS_DLL_PUBLIC const gchar* stats_tree_get_column_name (gint col_index);
/** returns the maximum number of characters in the value of a column */
WS_DLL_PUBLIC gint stats_tree_get_column_size (gint index);
WS_DLL_PUBLIC gint stats_tree_get_column_size (gint col_index);
/** returns the formatted column values for the current node
as array of gchar*. Caller must free entries and free array */