summaryrefslogtreecommitdiff
path: root/javascript/duktape/Window.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/Window.bnd
parent51c2dd70e2bb8da61f683916111f083ec0263953 (diff)
downloadnetsurf-4bdd4cf7b604b140ed203d30b5730879de92bdd6.tar.gz
netsurf-4bdd4cf7b604b140ed203d30b5730879de92bdd6.tar.bz2
Update bindings to cope with improved nsgenbind syntax
Diffstat (limited to 'javascript/duktape/Window.bnd')
-rw-r--r--javascript/duktape/Window.bnd8
1 files changed, 4 insertions, 4 deletions
diff --git a/javascript/duktape/Window.bnd b/javascript/duktape/Window.bnd
index 4121ac6ca..81f605931 100644
--- a/javascript/duktape/Window.bnd
+++ b/javascript/duktape/Window.bnd
@@ -9,17 +9,17 @@
*/
class Window {
- private "struct browser_window *" win;
- private "struct html_content *" htmlc;
+ private struct browser_window * win;
+ private struct html_content * htmlc;
prologue %{
#include "utils/nsurl.h"
#include "desktop/browser.h"
#include "render/html.h"
#include "render/html_internal.h"
%};
-}
+};
-init Window("struct browser_window *" win, "struct html_content *" htmlc)
+init Window(struct browser_window *win, struct html_content *htmlc)
%{
/* element window */
priv->win = win;