]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Fix uri functions, patch by Michael Lawrence, fixes bug 538384
authorJürg Billeter <j@bitron.ch>
Sun, 15 Jun 2008 22:51:57 +0000 (22:51 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Sun, 15 Jun 2008 22:51:57 +0000 (22:51 +0000)
2008-06-16  Jürg Billeter  <j@bitron.ch>

* vapi/libxml-2.0.vapi:

Fix uri functions, patch by Michael Lawrence, fixes bug 538384

svn path=/trunk/; revision=1594

ChangeLog
vapi/libxml-2.0.vapi

index 24d979bcde22da55e10e071e0ef74a750c79dbb8..00201cf6fe5cb581f044882c682922e6fe590c73 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-06-16  Jürg Billeter  <j@bitron.ch>
+
+       * vapi/libxml-2.0.vapi:
+
+       Fix uri functions, patch by Michael Lawrence, fixes bug 538384
+
 2008-06-16  Jürg Billeter  <j@bitron.ch>
 
        * vala/valasemanticanalyzer.vala:
index 36f35b92adeaf7b8fce3d5d8b1395d4a85d1b50d..cb702e76df90529bfdee552e9f89ab2818278d8d 100644 (file)
@@ -759,10 +759,10 @@ namespace Xml {
                public static int normalize_uri_path (string path);
 
                [CCode (cname = "xmlParseURI")]
-               public URI* parse (string str);
+               public static URI parse (string str);
 
                [CCode (cname = "xmlParseURIRaw")]
-               public URI* parse_raw (string str, int raw);
+               public static URI parse_raw (string str, int raw);
 
                [CCode (cname = "xmlParseURIReference")]
                public int parse_reference (string str);
@@ -783,7 +783,7 @@ namespace Xml {
                public static string escape_str (string str, string list);
 
                [CCode (cname = "xmlURIUnescapeString")]
-               public static string unescape_string (string str, int len, string target);
+               public static string unescape_string (string str, int len, string? target);
 
                public string scheme;
                public string opaque;