From: Ali Sabil Date: Fri, 17 Apr 2009 07:59:04 +0000 (+0200) Subject: libxml-2.0.vapi: use the owned modifier instead of the deprecated # modifier X-Git-Tag: 0.7.1~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=abbdf7f6872f05f48d20a5172c40dfcc46a80986;p=thirdparty%2Fvala.git libxml-2.0.vapi: use the owned modifier instead of the deprecated # modifier --- diff --git a/vapi/libxml-2.0.vapi b/vapi/libxml-2.0.vapi index 50a180e62..9491131af 100644 --- a/vapi/libxml-2.0.vapi +++ b/vapi/libxml-2.0.vapi @@ -361,7 +361,7 @@ namespace Xml { public Node* new_node (Ns* ns, string name, string? content = null); [CCode (cname = "xmlNewDocNodeEatName")] - public Node* new_node_eat_name (Ns* ns, string# name, string? content = null); + public Node* new_node_eat_name (Ns* ns, owned string name, string? content = null); [CCode (cname = "xmlNewDocPI")] public Node* new_pi (string name, string content); @@ -677,7 +677,7 @@ namespace Xml { public Node (Ns* ns, string name); [CCode (cname = "xmlNewNodeEatName")] - public Node.eat_name (Ns* ns, string# name); + public Node.eat_name (Ns* ns, owned string name); [CCode (cname = "xmlNewText")] public Node.text (string content);