diff options
author | Not Zed <NotZed@Ximian.com> | 2005-08-24 11:14:24 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2005-08-24 11:14:24 +0800 |
commit | 2ac8b0ae3c0be1146258178a31ebe7d09d609405 (patch) | |
tree | e0ca62b9256ca595086026692df7779d5dee1601 /plugins | |
parent | 1fcb8ae1ba7077f67daf8c2bd47a43ae7d31ca12 (diff) | |
download | gsoc2013-evolution-2ac8b0ae3c0be1146258178a31ebe7d09d609405.tar.gz gsoc2013-evolution-2ac8b0ae3c0be1146258178a31ebe7d09d609405.tar.zst gsoc2013-evolution-2ac8b0ae3c0be1146258178a31ebe7d09d609405.zip |
use the right type for attendees.
2005-08-23 Not Zed <NotZed@Ximian.com>
* mail-to-task.c (add_attendee_cb): use the right type for attendees.
svn path=/trunk/; revision=30229
Diffstat (limited to 'plugins')
-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; |