From 2748fe4f6483f8cfb3c4f91a01e8d897b7d1ac47 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Mon, 5 Apr 2010 21:35:38 +0000 Subject: Make downloads work again. svn path=/trunk/netsurf/; revision=10243 --- framebuffer/gui.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'framebuffer') diff --git a/framebuffer/gui.c b/framebuffer/gui.c index 8d2759d84..e691bebdb 100644 --- a/framebuffer/gui.c +++ b/framebuffer/gui.c @@ -1358,16 +1358,16 @@ gui_window_set_search_ico(hlcache_handle *ico) { } -struct gui_download_window *gui_download_window_create(const char *url, - const char *mime_type, struct fetch *fetch, - unsigned int total_size, struct gui_window *gui) +struct gui_download_window *gui_download_window_create(download_context *ctx, + struct gui_window *parent) { return NULL; } -void gui_download_window_data(struct gui_download_window *dw, const char *data, - unsigned int size) +nserror gui_download_window_data(struct gui_download_window *dw, + const char *data, unsigned int size) { + return NSERROR_OK; } void gui_download_window_error(struct gui_download_window *dw, -- cgit v1.2.3