summaryrefslogtreecommitdiff
path: root/beos/gui.cpp
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-01-11 22:34:12 +0000
committerVincent Sanders <vince@kyllikki.org>2014-01-11 22:34:12 +0000
commitc8496df3df7d059528f2d5e735be5c55bfa75ef6 (patch)
tree7979e63f7e548c7a9d6bb024afde7b1bc785ff44 /beos/gui.cpp
parentd3c392c3d3b516f05fbf71020b2f6774ce20ce8c (diff)
downloadnetsurf-c8496df3df7d059528f2d5e735be5c55bfa75ef6.tar.gz
netsurf-c8496df3df7d059528f2d5e735be5c55bfa75ef6.tar.bz2
move window creation and destruction into table
Diffstat (limited to 'beos/gui.cpp')
-rw-r--r--beos/gui.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/beos/gui.cpp b/beos/gui.cpp
index 486085de3..22c45598d 100644
--- a/beos/gui.cpp
+++ b/beos/gui.cpp
@@ -1087,8 +1087,10 @@ void gui_file_gadget_open(struct gui_window *g, hlcache_handle *hl,
static struct gui_table beos_gui_table = {
- .poll = &gui_poll,
- .quit = &gui_quit,
+ .poll = gui_poll,
+ .quit = gui_quit,
+ .window_create = gui_window_create,
+ .window_destroy = gui_window_destroy,
};