summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2009-03-30 22:28:03 +0200
committerJürg Billeter <j@bitron.ch>2009-03-30 22:28:03 +0200
commit1347557e3070ac584b2aec3a12be78afadb31809 (patch)
treeac6f4a0fb4a15e0d61f5a3d9821b1b8321079940
parentb28d713d6ec4e5be612c983b2085f962f2871f0e (diff)
downloadvala-1347557e3070ac584b2aec3a12be78afadb31809.tar.gz
glib-2.0: Fix g_match_info_fetch* bindings
-rw-r--r--vapi/glib-2.0.vapi4
1 files changed, 2 insertions, 2 deletions
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 ();