summaryrefslogtreecommitdiff
path: root/ui/gtk/conversations_table.c
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2013-06-16 02:35:51 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2013-06-16 02:35:51 +0000
commit860b920383c9cd11e10072eacee2c91169da0d61 (patch)
tree437a20706fc6b37993d4d15e19101798eaaaa0cc /ui/gtk/conversations_table.c
parentb3ac3506e8bdc24b177eeab8a1d667c223e278e2 (diff)
downloadwireshark-860b920383c9cd11e10072eacee2c91169da0d61.tar.gz
Make the B->A graph label show as A<-B to be consistent with the column
heading. svn path=/trunk/; revision=49954
Diffstat (limited to 'ui/gtk/conversations_table.c')
-rw-r--r--ui/gtk/conversations_table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gtk/conversations_table.c b/ui/gtk/conversations_table.c
index 6c7c86075e..e17d62e7f8 100644
--- a/ui/gtk/conversations_table.c
+++ b/ui/gtk/conversations_table.c
@@ -2693,7 +2693,7 @@ init_conversation_table(gboolean hide_ports, const char *table_name, const char
g_object_set_data(G_OBJECT(graph_a_b_bt), CONV_PTR_KEY, conversations);
g_signal_connect(graph_a_b_bt, "clicked", G_CALLBACK(graph_cb), (gpointer)FALSE);
- /* Graph B->A */
+ /* Graph A<-B */
graph_b_a_bt = (GtkWidget *)g_object_get_data(G_OBJECT(bbox), WIRESHARK_STOCK_GRAPH_B_A);
gtk_widget_set_tooltip_text(graph_b_a_bt, "Graph traffic from address B to address A.");
g_object_set_data(G_OBJECT(graph_b_a_bt), E_DFILTER_TE_KEY, main_display_filter_widget);