summaryrefslogtreecommitdiff
path: root/atari/download.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 /atari/download.c
parent68eaec5cb4208ee80e7c0610361405fd01fc1b69 (diff)
downloadnetsurf-bd065d4a434755e67642a071e255cba596de8d1e.tar.gz
netsurf-bd065d4a434755e67642a071e255cba596de8d1e.tar.bz2
split browser gui operations up
Diffstat (limited to 'atari/download.c')
-rwxr-xr-xatari/download.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/atari/download.c b/atari/download.c
index 4da9ef345..8d4786e23 100755
--- a/atari/download.c
+++ b/atari/download.c
@@ -455,12 +455,11 @@ static void gui_download_window_done(struct gui_download_window *dw)
gui_window_set_status(input_window, messages_get("Done") );
}
-static struct gui_download_table gui_download_table = {
+static struct gui_download_table download_table = {
.create = gui_download_window_create,
.data = gui_download_window_data,
.error = gui_download_window_error,
.done = gui_download_window_done,
};
-struct gui_download_table *atari_gui_download_table = &gui_download_table;
-
+struct gui_download_table *atari_download_table = &download_table;