From 2112bb1c93108df36a6f8ab5542c5346a65988bb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Tue, 19 May 2015 12:39:30 -0400 Subject: [PATCH] lib/gtk: fix missing 'h' in `GtkBox::omogeneous` MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- lib/gtk/v3_4/gtk_core.nit | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/gtk/v3_4/gtk_core.nit b/lib/gtk/v3_4/gtk_core.nit index 88842a4..88e373a 100644 --- a/lib/gtk/v3_4/gtk_core.nit +++ b/lib/gtk/v3_4/gtk_core.nit @@ -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 -- 1.7.9.5