summaryrefslogtreecommitdiff
path: root/monkey/browser.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2014-01-15 19:37:05 +0000
committerVincent Sanders <vince@netsurf-browser.org>2014-01-15 19:37:05 +0000
commitbd065d4a434755e67642a071e255cba596de8d1e (patch)
tree343a4343ace1c38f3ab67b3a9405a629fbbaa117 /monkey/browser.c
parent68eaec5cb4208ee80e7c0610361405fd01fc1b69 (diff)
downloadnetsurf-bd065d4a434755e67642a071e255cba596de8d1e.tar.gz
netsurf-bd065d4a434755e67642a071e255cba596de8d1e.tar.bz2
split browser gui operations up
Diffstat (limited to 'monkey/browser.c')
-rw-r--r--monkey/browser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/monkey/browser.c b/monkey/browser.c
index 97bd0be8b..85e25d9ea 100644
--- a/monkey/browser.c
+++ b/monkey/browser.c
@@ -503,7 +503,7 @@ monkey_window_handle_command(int argc, char **argv)
}
-static struct gui_window_table gui_window_table = {
+static struct gui_window_table window_table = {
.create = gui_window_create,
.destroy = gui_window_destroy,
.redraw = gui_window_redraw_window,
@@ -529,4 +529,4 @@ static struct gui_window_table gui_window_table = {
.stop_throbber = gui_window_stop_throbber,
};
-struct gui_window_table *monkey_gui_window_table = &gui_window_table;
+struct gui_window_table *monkey_window_table = &window_table;