lib/gtk: fix missing 'h' in `GtkBox::omogeneous`
authorAlexis Laferrière <alexis.laf@xymus.net>
Tue, 19 May 2015 16:39:30 +0000 (12:39 -0400)
committerAlexis Laferrière <alexis.laf@xymus.net>
Tue, 19 May 2015 16:40:17 +0000 (12:40 -0400)
Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

lib/gtk/v3_4/gtk_core.nit

index 88842a4..88e373a 100644 (file)
@@ -389,11 +389,11 @@ extern class GtkBox `{ GtkBox * `}
        `}
 
        # Give the children of `self` equal space in the box?
-       fun omogeneous: Bool `{ return gtk_box_get_homogeneous(recv); `}
+       fun homogeneous: Bool `{ return gtk_box_get_homogeneous(recv); `}
 
        # Give the children of `self` equal space in the box?
-       fun omogeneous=(omogeneous: Bool) `{
-               gtk_box_set_homogeneous(recv, omogeneous);
+       fun homogeneous=(homogeneous: Bool) `{
+               gtk_box_set_homogeneous(recv, homogeneous);
        `}
 
        # Add `child` and pack it at the start of the box