diff --git a/ChangeLog b/ChangeLog index 4799a35f2e..9758c556e4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2005-08-01 Matthias Clasen + * gtk/gtkfixed.c (gtk_fixed_put): Fix a typo, spotted by + David Odin. + * gtk/Makefile.am (install-data-local): * gtk/gtksettings.c (gtk_settings_class_init): Rename the default theme to "Raleigh". (#312254, Thomas Wood) diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 4799a35f2e..9758c556e4 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,5 +1,8 @@ 2005-08-01 Matthias Clasen + * gtk/gtkfixed.c (gtk_fixed_put): Fix a typo, spotted by + David Odin. + * gtk/Makefile.am (install-data-local): * gtk/gtksettings.c (gtk_settings_class_init): Rename the default theme to "Raleigh". (#312254, Thomas Wood) diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 4799a35f2e..9758c556e4 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,5 +1,8 @@ 2005-08-01 Matthias Clasen + * gtk/gtkfixed.c (gtk_fixed_put): Fix a typo, spotted by + David Odin. + * gtk/Makefile.am (install-data-local): * gtk/gtksettings.c (gtk_settings_class_init): Rename the default theme to "Raleigh". (#312254, Thomas Wood) diff --git a/gtk/gtkfixed.c b/gtk/gtkfixed.c index 36fabdd2c7..ffe06c36bd 100644 --- a/gtk/gtkfixed.c +++ b/gtk/gtkfixed.c @@ -188,7 +188,7 @@ gtk_fixed_put (GtkFixed *fixed, GtkFixedChild *child_info; g_return_if_fail (GTK_IS_FIXED (fixed)); - g_return_if_fail (GTK_IS_WIDGET (fixed)); + g_return_if_fail (GTK_IS_WIDGET (widget)); child_info = g_new (GtkFixedChild, 1); child_info->widget = widget;