summaryrefslogtreecommitdiff
path: root/vapi/libxml-2.0.vapi
diff options
context:
space:
mode:
authorAli Sabil <ali.sabil@gmail.com>2009-04-17 09:59:04 +0200
committerAli Sabil <ali.sabil@gmail.com>2009-04-17 09:59:04 +0200
commitabbdf7f6872f05f48d20a5172c40dfcc46a80986 (patch)
tree6bb86673df54889890962c3b7878ebcf3e5d21e5 /vapi/libxml-2.0.vapi
parentb1078c562e4e510b16e3501f24fed3389dda2c0a (diff)
downloadvala-abbdf7f6872f05f48d20a5172c40dfcc46a80986.tar.gz
libxml-2.0.vapi: use the owned modifier instead of the deprecated # modifier
Diffstat (limited to 'vapi/libxml-2.0.vapi')
-rw-r--r--vapi/libxml-2.0.vapi4
1 files changed, 2 insertions, 2 deletions
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);