aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/capture_if_dlg.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2011-02-16 19:26:08 +0000
committerGerald Combs <gerald@wireshark.org>2011-02-16 19:26:08 +0000
commit9bdecea98c5ca09f6f77341daea8ef75e3241718 (patch)
tree1b042223a2825c5ad692475e6d23ea7a5bf3b0fc /gtk/capture_if_dlg.c
parent82c78778ae49ea5c09bd1caa237a98ce4b9c79ac (diff)
Fix compilation on Windows.
svn path=/trunk/; revision=35967
Diffstat (limited to 'gtk/capture_if_dlg.c')
-rw-r--r--gtk/capture_if_dlg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/capture_if_dlg.c b/gtk/capture_if_dlg.c
index a69420240b..eba82c5b96 100644
--- a/gtk/capture_if_dlg.c
+++ b/gtk/capture_if_dlg.c
@@ -859,7 +859,7 @@ capture_if_cb(GtkWidget *w _U_, gpointer d _U_)
#ifdef _WIN32
if_dlg_data->details_bt = gtk_button_new_from_stock(WIRESHARK_STOCK_CAPTURE_DETAILS);
#if GTK_CHECK_VERSION(2,12,0)
- gtk_widget_set_tooltip-text(if_dlg_data->details_bt, "Open the capture details dialog of this interface.");
+ gtk_widget_set_tooltip_text(if_dlg_data->details_bt, "Open the capture details dialog of this interface.");
#else
gtk_tooltips_set_tip(tooltips, if_dlg_data->details_bt,
"Open the capture details dialog of this interface.", NULL);