aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/tcp_graph.c
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2013-06-05 16:42:22 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2013-06-05 16:42:22 +0000
commitb4414c61d9a88a718596785b3a19919a69090bb4 (patch)
treee8d1ee09caa0c21a87fce02f33adb496c813e8c0 /ui/gtk/tcp_graph.c
parentc891784de783cf23b8cf2957929af162480e0c73 (diff)
As of r49659, StatisticsMenu is now just Statistics.
Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8770 svn path=/trunk/; revision=49788
Diffstat (limited to 'ui/gtk/tcp_graph.c')
-rw-r--r--ui/gtk/tcp_graph.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/gtk/tcp_graph.c b/ui/gtk/tcp_graph.c
index 08b65382f2..df8fbc333c 100644
--- a/ui/gtk/tcp_graph.c
+++ b/ui/gtk/tcp_graph.c
@@ -649,15 +649,15 @@ void tcp_graph_cb(GtkAction *action, gpointer user_data _U_)
guint graph_type;
name = gtk_action_get_name(action);
- if (strcmp(name, "/StatisticsMenu/TCPStreamGraphMenu/Time-Sequence-Graph-Stevens") == 0) {
+ if (strcmp(name, "/Statistics/TCPStreamGraphMenu/Time-Sequence-Graph-Stevens") == 0) {
graph_type = GRAPH_TSEQ_STEVENS;
- } else if (strcmp(name, "/StatisticsMenu/TCPStreamGraphMenu/Time-Sequence-Graph-tcptrace") == 0) {
+ } else if (strcmp(name, "/Statistics/TCPStreamGraphMenu/Time-Sequence-Graph-tcptrace") == 0) {
graph_type = GRAPH_TSEQ_TCPTRACE;
- } else if (strcmp(name, "/StatisticsMenu/TCPStreamGraphMenu/Throughput-Graph") == 0) {
+ } else if (strcmp(name, "/Statistics/TCPStreamGraphMenu/Throughput-Graph") == 0) {
graph_type = GRAPH_THROUGHPUT;
- } else if (strcmp(name, "/StatisticsMenu/TCPStreamGraphMenu/RTT-Graph") == 0) {
+ } else if (strcmp(name, "/Statistics/TCPStreamGraphMenu/RTT-Graph") == 0) {
graph_type = GRAPH_RTT;
- } else if (strcmp(name, "/StatisticsMenu/TCPStreamGraphMenu/Window-Scaling-Graph") == 0) {
+ } else if (strcmp(name, "/Statistics/TCPStreamGraphMenu/Window-Scaling-Graph") == 0) {
graph_type = GRAPH_WSCALE;
} else {
return;