diff options
author | Tim Janik <timj@gtk.org> | 2007-06-27 11:28:55 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2007-06-27 11:28:55 +0000 |
commit | 286567a7242064c702006c7daf47ccde8ed8661a (patch) | |
tree | 77c441217d5db05bbedc4ff9567accdfef238a0e /gtk/gtkradiobutton.h | |
parent | c7e4f38dbbe81d70eb786dc6d68faf10049c9f70 (diff) | |
download | gtk+-286567a7242064c702006c7daf47ccde8ed8661a.tar.gz |
applied patch to improve variable names, by Olivier Delhomme, #451527.
Wed Jun 27 13:27:21 2007 Tim Janik <timj@gtk.org>
* gtk/gtkradiobutton.[hc]: applied patch to improve variable names,
by Olivier Delhomme, #451527.
svn path=/trunk/; revision=18259
Diffstat (limited to 'gtk/gtkradiobutton.h')
-rw-r--r-- | gtk/gtkradiobutton.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkradiobutton.h b/gtk/gtkradiobutton.h index 6f7ce3a1ef..0d885e63aa 100644 --- a/gtk/gtkradiobutton.h +++ b/gtk/gtkradiobutton.h @@ -69,14 +69,14 @@ struct _GtkRadioButtonClass GType gtk_radio_button_get_type (void) G_GNUC_CONST; GtkWidget* gtk_radio_button_new (GSList *group); -GtkWidget* gtk_radio_button_new_from_widget (GtkRadioButton *group); +GtkWidget* gtk_radio_button_new_from_widget (GtkRadioButton *radio_group_member); GtkWidget* gtk_radio_button_new_with_label (GSList *group, const gchar *label); -GtkWidget* gtk_radio_button_new_with_label_from_widget (GtkRadioButton *group, +GtkWidget* gtk_radio_button_new_with_label_from_widget (GtkRadioButton *radio_group_member, const gchar *label); GtkWidget* gtk_radio_button_new_with_mnemonic (GSList *group, const gchar *label); -GtkWidget* gtk_radio_button_new_with_mnemonic_from_widget (GtkRadioButton *group, +GtkWidget* gtk_radio_button_new_with_mnemonic_from_widget (GtkRadioButton *radio_group_member, const gchar *label); GSList* gtk_radio_button_get_group (GtkRadioButton *radio_button); void gtk_radio_button_set_group (GtkRadioButton *radio_button, |