summaryrefslogtreecommitdiff
path: root/javascript/duktape/HTMLCollection.bnd
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-09-28 08:56:23 +0100
committerVincent Sanders <vince@kyllikki.org>2015-09-28 08:57:45 +0100
commit4bdd4cf7b604b140ed203d30b5730879de92bdd6 (patch)
treeec78af7567bf1d3555b0c7fcadd981ce5ce84349 /javascript/duktape/HTMLCollection.bnd
parent51c2dd70e2bb8da61f683916111f083ec0263953 (diff)
downloadnetsurf-4bdd4cf7b604b140ed203d30b5730879de92bdd6.tar.gz
netsurf-4bdd4cf7b604b140ed203d30b5730879de92bdd6.tar.bz2
Update bindings to cope with improved nsgenbind syntax
Diffstat (limited to 'javascript/duktape/HTMLCollection.bnd')
-rw-r--r--javascript/duktape/HTMLCollection.bnd6
1 files changed, 3 insertions, 3 deletions
diff --git a/javascript/duktape/HTMLCollection.bnd b/javascript/duktape/HTMLCollection.bnd
index 08a162d35..2ffe7027b 100644
--- a/javascript/duktape/HTMLCollection.bnd
+++ b/javascript/duktape/HTMLCollection.bnd
@@ -9,10 +9,10 @@
*/
class HTMLCollection {
- private "struct dom_html_collection *" coll;
-}
+ private struct dom_html_collection *coll;
+};
-init HTMLCollection("struct dom_html_collection *" coll)
+init HTMLCollection(struct dom_html_collection *coll)
%{
priv->coll = coll;
dom_html_collection_ref(coll);