From: Jürg Billeter Date: Mon, 30 Mar 2009 20:28:03 +0000 (+0200) Subject: glib-2.0: Fix g_match_info_fetch* bindings X-Git-Tag: 0.6.0~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1347557e3070ac584b2aec3a12be78afadb31809;p=thirdparty%2Fvala.git glib-2.0: Fix g_match_info_fetch* bindings --- diff --git a/vapi/glib-2.0.vapi b/vapi/glib-2.0.vapi index 0b887617f..b7ce9c8b8 100644 --- a/vapi/glib-2.0.vapi +++ b/vapi/glib-2.0.vapi @@ -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 ();