From: Martin Olsson Date: Sun, 11 Jul 2010 11:40:17 +0000 (+0200) Subject: glib-2.0: Make return value of GLib.Dir.read_name() nullable X-Git-Tag: 0.9.4~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=405e200d0c2346bce4df1f392d49c41909de8bc2;p=thirdparty%2Fvala.git glib-2.0: Make return value of GLib.Dir.read_name() nullable Fixes bug 624096. --- diff --git a/vapi/glib-2.0.vapi b/vapi/glib-2.0.vapi index ca9079243..44080ad03 100644 --- a/vapi/glib-2.0.vapi +++ b/vapi/glib-2.0.vapi @@ -2752,7 +2752,7 @@ namespace GLib { [CCode (free_function = "g_dir_close")] public class Dir { public static Dir open (string filename, uint _flags = 0) throws FileError; - public unowned string read_name (); + public unowned string? read_name (); public void rewind (); }