]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
libxml-2.0: Fix xmlGetProp/xmlGetNsProp/xmlGetNoNsProp bindings
authorMartin Olsson <martin@minimum.se>
Mon, 7 Sep 2009 19:59:14 +0000 (21:59 +0200)
committerJürg Billeter <j@bitron.ch>
Mon, 14 Sep 2009 16:06:08 +0000 (18:06 +0200)
Fixes bug 594414.

vapi/libxml-2.0.vapi

index 6b0f72e0b23086182c0ef3b0cf95c54e096f2139..5665b50552919665ce37d22b540e2e78c69bb611 100644 (file)
@@ -599,16 +599,16 @@ namespace Xml {
                public long get_line_no ();
 
                [CCode (cname = "xmlGetNoNsProp")]
-               public string get_no_ns_prop (string name);
+               public string? get_no_ns_prop (string name);
 
                [CCode (cname = "xmlGetNodePath")]
                public string get_path ();
 
                [CCode (cname = "xmlGetNsProp")]
-               public string get_ns_prop (string name, string ns);
+               public string? get_ns_prop (string name, string ns);
 
                [CCode (cname = "xmlGetProp")]
-               public string get_prop (string name);
+               public string? get_prop (string name);
 
                [CCode (cname = "xmlHasNsProp")]
                public Attr* has_ns_prop (string name, string name_space);