aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/mcast_stream_dlg.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2011-07-13 08:48:13 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2011-07-13 08:48:13 +0000
commitd2e6304d95027ad96ff3e57f08bb1adfb6c8f141 (patch)
treec9c0380c82101ba31eb70c64c42c002044cf855f /gtk/mcast_stream_dlg.c
parent010cb74a3d2766ef8120df3c8a835c458be59e34 (diff)
Fix more tooltips fixes.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37996 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/mcast_stream_dlg.c')
-rw-r--r--gtk/mcast_stream_dlg.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/gtk/mcast_stream_dlg.c b/gtk/mcast_stream_dlg.c
index fc26bb080c..736bfc2c4b 100644
--- a/gtk/mcast_stream_dlg.c
+++ b/gtk/mcast_stream_dlg.c
@@ -644,7 +644,6 @@ mcaststream_dlg_create(void)
/*GtkWidget *bt_unselect;*/
GtkWidget *bt_params;
GtkWidget *bt_close;
- GtkTooltips *tooltips = gtk_tooltips_new();
const gchar *title_name_ptr;
gchar *win_name;
@@ -684,19 +683,19 @@ mcaststream_dlg_create(void)
/*bt_unselect = gtk_button_new_with_label ("Unselect");
gtk_container_add (GTK_CONTAINER (hbuttonbox), bt_unselect);
- gtk_tooltips_set_tip (tooltips, bt_unselect, "Undo stream selection", NULL);*/
+ gtk_widget_set_tooltip_text (bt_unselect, "Undo stream selection");*/
bt_params = gtk_button_new_with_label ("Set parameters");
gtk_container_add (GTK_CONTAINER (hbuttonbox), bt_params);
- gtk_tooltips_set_tip (tooltips, bt_params, "Set buffer, limit and speed parameters", NULL);
+ gtk_widget_set_tooltip_text (bt_params, "Set buffer, limit and speed parameters");
bt_filter = gtk_button_new_with_label ("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", NULL);
+ gtk_widget_set_tooltip_text (bt_filter, "Prepare a display filter of the selected stream");
bt_close = gtk_button_new_from_stock(GTK_STOCK_CLOSE);
gtk_container_add (GTK_CONTAINER (hbuttonbox), bt_close);
- gtk_tooltips_set_tip (tooltips, bt_close, "Close this dialog", NULL);
+ gtk_widget_set_tooltip_text (bt_close, "Close this dialog");
GTK_WIDGET_SET_FLAGS(bt_close, GTK_CAN_DEFAULT);
/*g_signal_connect(bt_unselect, "clicked", G_CALLBACK(mcaststream_on_unselect), NULL);*/