From 20455969df96ff632cc04b69584c4e871908f802 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 2 Aug 2005 03:49:39 +0000 Subject: [PATCH] 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. --- ChangeLog | 3 +++ ChangeLog.pre-2-10 | 3 +++ ChangeLog.pre-2-8 | 3 +++ gtk/gtkfixed.c | 2 +- 4 files changed, 10 insertions(+), 1 deletion(-) 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;