]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
glib-2.0: Make return value of GLib.Dir.read_name() nullable
authorMartin Olsson <martin@minimum.se>
Sun, 11 Jul 2010 11:40:17 +0000 (13:40 +0200)
committerEvan Nemerson <evan@coeus-group.com>
Sat, 17 Jul 2010 05:57:13 +0000 (22:57 -0700)
Fixes bug 624096.

vapi/glib-2.0.vapi

index ca9079243df7a0337732474ebd354dc862cb5aaa..44080ad03c736fe94b180048f7bc134bfea53384 100644 (file)
@@ -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 ();
        }