aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/print_dlg.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-02-21 21:06:27 +0000
committerGuy Harris <guy@alum.mit.edu>2003-02-21 21:06:27 +0000
commitbedd818b3f0a4127c1b815d0952643effd4c75f8 (patch)
tree0190560ce5372879d60f019ff8c64a5ae31515e4 /gtk/print_dlg.c
parent097f40cae84fde947a8d7bbea11d04b107b9b2bf (diff)
From Pavel Roskin: in the GTK+ 2 code, associate the "Print Detail"
button with the correct group. svn path=/trunk/; revision=7183
Diffstat (limited to 'gtk/print_dlg.c')
-rw-r--r--gtk/print_dlg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/print_dlg.c b/gtk/print_dlg.c
index 65c9422005..bf6264f64e 100644
--- a/gtk/print_dlg.c
+++ b/gtk/print_dlg.c
@@ -1,7 +1,7 @@
/* print_dlg.c
* Dialog boxes for printing
*
- * $Id: print_dlg.c,v 1.40 2002/11/11 15:39:05 oabad Exp $
+ * $Id: print_dlg.c,v 1.41 2003/02/21 21:06:27 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -320,7 +320,7 @@ file_print_cmd_cb(GtkWidget *widget _U_, gpointer data _U_)
accel_group);
#else
detail_rb = gtk_radio_button_new_with_mnemonic_from_widget(
- GTK_RADIO_BUTTON(button), "Print _detail");
+ GTK_RADIO_BUTTON(summary_rb), "Print _detail");
#endif
gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(detail_rb), TRUE);
SIGNAL_CONNECT(detail_rb, "toggled", print_cmd_toggle_detail, NULL);