diff options
-rw-r--r-- | plugins/mail-to-task/ChangeLog | 4 | ||||
-rw-r--r-- | plugins/mail-to-task/mail-to-task.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/plugins/mail-to-task/ChangeLog b/plugins/mail-to-task/ChangeLog index 2ad6c6f63a..da85e30bbd 100644 --- a/plugins/mail-to-task/ChangeLog +++ b/plugins/mail-to-task/ChangeLog @@ -1,3 +1,7 @@ +2005-08-23 Not Zed <NotZed@Ximian.com> + + * mail-to-task.c (add_attendee_cb): use the right type for attendees. + 2005-05-11 Not Zed <NotZed@Ximian.com> * Makefile.am: added built_sources/cleanfiles diff --git a/plugins/mail-to-task/mail-to-task.c b/plugins/mail-to-task/mail-to-task.c index d2c5f9eb71..12c1117a6c 100644 --- a/plugins/mail-to-task/mail-to-task.c +++ b/plugins/mail-to-task/mail-to-task.c @@ -30,7 +30,7 @@ add_attendee_cb (gpointer key, gpointer value, gpointer user_data) { ECalComponentAttendee *ca; const char *str, *name; - GList **attendees = user_data; + GSList **attendees = user_data; if (!camel_internet_address_get (value, 0, &name, &str)) return; |