]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
glib-2.0: Fix g_match_info_fetch* bindings
authorJürg Billeter <j@bitron.ch>
Mon, 30 Mar 2009 20:28:03 +0000 (22:28 +0200)
committerJürg Billeter <j@bitron.ch>
Mon, 30 Mar 2009 20:28:03 +0000 (22:28 +0200)
vapi/glib-2.0.vapi

index 0b887617ff587a9497585b42b3bcb1012269f00c..b7ce9c8b829c93f293314f068389285f6b2170f9 100644 (file)
@@ -2642,9 +2642,9 @@ namespace GLib {
                public int get_match_count ();
                public bool is_partial_match ();
                public string expand_references (string string_to_expand) throws RegexError;
-               public string fetch (int match_num);
+               public string? fetch (int match_num);
                public bool fetch_pos (int match_num, out int start_pos, out int end_pos);
-               public string fetch_named (string name);
+               public string? fetch_named (string name);
                public bool fetch_named_pos (string name, out int start_pos, out int end_pos);
                [CCode (array_length = false, array_null_terminated = true)]
                public string[] fetch_all ();