[epiphany] downloader-view: fix wrong return type



commit 915203e369ffadb94ecf895f6c328dcba91a7789
Author: Diego Escalante Urrelo <diegoe gnome org>
Date:   Tue Dec 29 01:07:55 2009 -0500

    downloader-view: fix wrong return type
    
    Bug #594192

 embed/downloader-view.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)
---
diff --git a/embed/downloader-view.c b/embed/downloader-view.c
index 8af02a4..3ecb4a2 100644
--- a/embed/downloader-view.c
+++ b/embed/downloader-view.c
@@ -592,10 +592,12 @@ download_status_changed_cb (WebKitDownload *download, GParamSpec *pspec, Downloa
                 update_download_row (dv, download);
 }
 
-static void
+static gboolean
 download_error_cb (WebKitDownload *download, gint error_code, gint error_detail, const gchar *reason, DownloaderView *dv)
 {
 	update_download_row (dv, download);
+
+	return FALSE;
 }
 
 static gboolean



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]