From: Murray Cumming Date: Wed, 3 Mar 2004 15:06:49 +0000 (+0000) Subject: Corrected the group_changed signal vfunc declaration, adding the first X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=1cbdd62ce3bd0e0ef13e477cccd8a9aa752dbfdf;p=~andy%2Fgtk Corrected the group_changed signal vfunc declaration, adding the first 2004-03-03 Murray Cumming * gtk/gtkradiobutton.h, radiomenuitem.h: Corrected the group_changed signal vfunc declaration, adding the first parameter, which is the widget emitting the signal. --- diff --git a/ChangeLog b/ChangeLog index 806253044..a39241191 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-03-03 Murray Cumming + + * gtk/gtkradiobutton.h, radiomenuitem.h: Corrected the group_changed + signal vfunc declaration, adding the first parameter, which is the + widget emitting the signal. + 2004-03-03 Morten Welinder * tests/testfilechooser.c (update_preview_cb): Plug leak. diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 806253044..a39241191 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +2004-03-03 Murray Cumming + + * gtk/gtkradiobutton.h, radiomenuitem.h: Corrected the group_changed + signal vfunc declaration, adding the first parameter, which is the + widget emitting the signal. + 2004-03-03 Morten Welinder * tests/testfilechooser.c (update_preview_cb): Plug leak. diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 806253044..a39241191 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +2004-03-03 Murray Cumming + + * gtk/gtkradiobutton.h, radiomenuitem.h: Corrected the group_changed + signal vfunc declaration, adding the first parameter, which is the + widget emitting the signal. + 2004-03-03 Morten Welinder * tests/testfilechooser.c (update_preview_cb): Plug leak. diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 806253044..a39241191 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +2004-03-03 Murray Cumming + + * gtk/gtkradiobutton.h, radiomenuitem.h: Corrected the group_changed + signal vfunc declaration, adding the first parameter, which is the + widget emitting the signal. + 2004-03-03 Morten Welinder * tests/testfilechooser.c (update_preview_cb): Plug leak. diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 806253044..a39241191 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +2004-03-03 Murray Cumming + + * gtk/gtkradiobutton.h, radiomenuitem.h: Corrected the group_changed + signal vfunc declaration, adding the first parameter, which is the + widget emitting the signal. + 2004-03-03 Morten Welinder * tests/testfilechooser.c (update_preview_cb): Plug leak. diff --git a/gtk/gtkradiobutton.h b/gtk/gtkradiobutton.h index 0455686db..c5264c58a 100644 --- a/gtk/gtkradiobutton.h +++ b/gtk/gtkradiobutton.h @@ -60,7 +60,7 @@ struct _GtkRadioButtonClass GtkCheckButtonClass parent_class; /* Signals */ - void (*group_changed) (void); + void (*group_changed) (GtkRadioButton *radio_button); /* Padding for future expansion */ void (*_gtk_reserved2) (void); diff --git a/gtk/gtkradiomenuitem.h b/gtk/gtkradiomenuitem.h index d4a112bac..2adb5636d 100644 --- a/gtk/gtkradiomenuitem.h +++ b/gtk/gtkradiomenuitem.h @@ -56,7 +56,7 @@ struct _GtkRadioMenuItemClass GtkCheckMenuItemClass parent_class; /* Signals */ - void (*group_changed) (void); + void (*group_changed) (GtkRadioMenuItem *radio_menu_item); /* Padding for future expansion */ void (*_gtk_reserved2) (void);