diff options
Diffstat (limited to 'gtk/capture_dlg.c')
-rw-r--r-- | gtk/capture_dlg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/capture_dlg.c b/gtk/capture_dlg.c index fa2d96da0f..12e5029821 100644 --- a/gtk/capture_dlg.c +++ b/gtk/capture_dlg.c @@ -850,11 +850,11 @@ capture_prep_cb(GtkWidget *w _U_, gpointer d _U_) advanced_hb = gtk_hbox_new(FALSE,5); gtk_box_pack_start(GTK_BOX(capture_vb), advanced_hb, FALSE, FALSE, 0); - advanced_bt = gtk_button_new(); + advanced_bt = gtk_button_new_with_label("Wireless Settings"); /* set the text */ #if GTK_MAJOR_VERSION >= 2 - /* XXX - find a way to set the GtkButton label in GTK 1.x */ + /* XXX - find a way to set the GtkButton label in GTK 2.x */ gtk_button_set_label(GTK_BUTTON(advanced_bt), "Wireless Settings"); #else /* Set the GtkButton label in GTK 1.x */ |