From: Matthias Clasen Date: Tue, 2 Aug 2005 03:49:39 +0000 (+0000) Subject: Fix a typo, spotted by David Odin. X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=20455969df96ff632cc04b69584c4e871908f802;hp=306011d26a36adec96a29eb53328f17ddf336388;p=~andy%2Fgtk Fix a typo, spotted by David Odin. 2005-08-01 Matthias Clasen * gtk/gtkfixed.c (gtk_fixed_put): Fix a typo, spotted by David Odin. --- diff --git a/ChangeLog b/ChangeLog index 4799a35f2..9758c556e 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 4799a35f2..9758c556e 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 4799a35f2..9758c556e 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 36fabdd2c..ffe06c36b 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;