]> Pileus Git - ~andy/gtk/commitdiff
Fix a typo, spotted by David Odin.
authorMatthias Clasen <mclasen@redhat.com>
Tue, 2 Aug 2005 03:49:39 +0000 (03:49 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Tue, 2 Aug 2005 03:49:39 +0000 (03:49 +0000)
2005-08-01  Matthias Clasen  <mclasen@redhat.com>

* gtk/gtkfixed.c (gtk_fixed_put): Fix a typo, spotted by
David Odin.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-8
gtk/gtkfixed.c

index 4799a35f2e38b2f67e7ab5c1a4b52cf9e904ef93..9758c556e433011385bf117f0e310c4224997bbb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-08-01  Matthias Clasen  <mclasen@redhat.com>
 
+       * 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)
index 4799a35f2e38b2f67e7ab5c1a4b52cf9e904ef93..9758c556e433011385bf117f0e310c4224997bbb 100644 (file)
@@ -1,5 +1,8 @@
 2005-08-01  Matthias Clasen  <mclasen@redhat.com>
 
+       * 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)
index 4799a35f2e38b2f67e7ab5c1a4b52cf9e904ef93..9758c556e433011385bf117f0e310c4224997bbb 100644 (file)
@@ -1,5 +1,8 @@
 2005-08-01  Matthias Clasen  <mclasen@redhat.com>
 
+       * 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)
index 36fabdd2c78277a4ab9e91bf8eea89de5e63640f..ffe06c36bdca80b65a2d3305d67ee330efcce8ec 100644 (file)
@@ -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;