From 2881d906c730bc011a355161fabfed1f99a2c731 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Mon, 22 Dec 2014 01:58:22 -0500 Subject: [PATCH] lib/gtk: fix import from `GtkEntry::text` 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gtk/v3_4/gtk_core.nit b/lib/gtk/v3_4/gtk_core.nit index 2e8dbfa..f6f10aa 100644 --- a/lib/gtk/v3_4/gtk_core.nit +++ b/lib/gtk/v3_4/gtk_core.nit @@ -404,7 +404,7 @@ extern class GtkEntry `{GtkEntry *`} return (GtkEntry *)gtk_entry_new(); `} - fun text : String is extern import String.to_cstring`{ + fun text : String is extern import NativeString.to_s `{ return NativeString_to_s( (char *)gtk_entry_get_text( recv ) ); `} -- 1.7.9.5