aboutsummaryrefslogtreecommitdiffstats
path: root/executive-summary
diff options
context:
space:
mode:
Diffstat (limited to 'executive-summary')
-rw-r--r--executive-summary/ChangeLog5
-rw-r--r--executive-summary/component/e-summary-url.c6
2 files changed, 9 insertions, 2 deletions
diff --git a/executive-summary/ChangeLog b/executive-summary/ChangeLog
index 82341fb131..e247e6d6ff 100644
--- a/executive-summary/ChangeLog
+++ b/executive-summary/ChangeLog
@@ -1,3 +1,8 @@
+2001-01-22 Christopher James Lahey <clahey@helixcode.com>
+
+ * component/e-summary-url.c: Change the callbacks in this file to
+ match the callback function types. Fixes warnings.
+
2001-01-12 Ettore Perazzoli <ettore@helixcode.com>
* component/component-factory.c (factory_fn): Pass NULL as the
diff --git a/executive-summary/component/e-summary-url.c b/executive-summary/component/e-summary-url.c
index ab7dacc52d..2c405b8664 100644
--- a/executive-summary/component/e-summary-url.c
+++ b/executive-summary/component/e-summary-url.c
@@ -102,8 +102,9 @@ typedef struct _DownloadInfo DownloadInfo;
static void
close_callback (GnomeVFSAsyncHandle *handle,
GnomeVFSResult result,
- DownloadInfo *info)
+ gpointer data)
{
+ DownloadInfo *info = data;
if (info->error) {
gtk_html_stream_close (info->stream, GTK_HTML_STREAM_ERROR);
} else {
@@ -121,8 +122,9 @@ read_callback (GnomeVFSAsyncHandle *handle,
gpointer buffer,
GnomeVFSFileSize bytes_requested,
GnomeVFSFileSize bytes_read,
- DownloadInfo *info)
+ gpointer data)
{
+ DownloadInfo *info = data;
if (result != GNOME_VFS_OK && result != GNOME_VFS_ERROR_EOF) {
g_warning ("Read error");
info->error = TRUE;