From Pavel Roskin: in the GTK+ 2 code, associate the "Print Detail"

button with the correct group.

svn path=/trunk/; revision=7183
This commit is contained in:
Guy Harris 2003-02-21 21:06:27 +00:00
parent 097f40cae8
commit bedd818b3f
3 changed files with 7 additions and 2 deletions

View File

@ -1621,6 +1621,10 @@ Martijn Schipper <martijn.schipper [AT] intersil.com> {
Fix for tag for 802.11g ERP Information field
}
And assorted fixes by:
Pavel Roskin <proski [AT] gnu.org>
Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to
give his permission to use his version of snprintf.c.

View File

@ -1726,6 +1726,7 @@ B<http://www.ethereal.com>.
Pasi Kovanen <Pasi.Kovanen [AT] tahoenetworks.fi>
Teemu Rinta-aho <teemu.rinta-aho [AT] nomadiclab.com>
Martijn Schipper <martijn.schipper [AT] intersil.com>
Pavel Roskin <proski [AT] gnu.org>
Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to give his
permission to use his version of snprintf.c.

View File

@ -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);