aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/rtp_stream_dlg.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2009-11-15 20:13:08 +0000
committerAnders Broman <anders.broman@ericsson.com>2009-11-15 20:13:08 +0000
commitb16fab6435699cb8377e6dca4c72de92d4883f3c (patch)
tree4a5d87a8feb74095f631e17fcb29696f53f2e6fc /gtk/rtp_stream_dlg.c
parent3dbe3bddcce079372e9825d9e4f15ae20a8f674f (diff)
From Alejandro Vaquero:
Add RTP player to "RTP Stream Analysis" and makeover of VoIP flow https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4240 svn path=/trunk/; revision=30967
Diffstat (limited to 'gtk/rtp_stream_dlg.c')
-rw-r--r--gtk/rtp_stream_dlg.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk/rtp_stream_dlg.c b/gtk/rtp_stream_dlg.c
index 37a6d4d238..4dc95f48e6 100644
--- a/gtk/rtp_stream_dlg.c
+++ b/gtk/rtp_stream_dlg.c
@@ -51,6 +51,7 @@
#include "gtk/gtkglobals.h"
#include "gtk/rtp_stream.h"
#include "gtk/rtp_analysis.h"
+#include "gtk/stock_icons.h"
#include "image/clist_ascend.xpm"
#include "image/clist_descend.xpm"
@@ -811,7 +812,7 @@ static void rtpstream_dlg_create (void)
gtk_container_add (GTK_CONTAINER (hbuttonbox), bt_mark);
gtk_tooltips_set_tip (tooltips, bt_mark, "Mark packets of the selected stream(s)", NULL);
- bt_filter = gtk_button_new_with_label ("Prepare Filter");
+ bt_filter = gtk_button_new_from_stock(WIRESHARK_STOCK_PREPARE_FILTER);
gtk_container_add (GTK_CONTAINER (hbuttonbox), bt_filter);
gtk_tooltips_set_tip (tooltips, bt_filter, "Prepare a display filter of the selected stream(s)", NULL);
@@ -822,7 +823,7 @@ static void rtpstream_dlg_create (void)
gtk_tooltips_set_tip(tooltips, bt_copy,
"Copy all statistical values of this page to the clipboard in CSV (Comma Separated Values) format.", NULL);
- bt_analyze = gtk_button_new_with_label ("Analyze");
+ bt_analyze = gtk_button_new_from_stock(WIRESHARK_STOCK_ANALYZE);
gtk_container_add (GTK_CONTAINER (hbuttonbox), bt_analyze);
gtk_tooltips_set_tip (tooltips, bt_analyze, "Open an analyze window of the selected stream(s)", NULL);