diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2007-06-03 10:10:05 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-06-03 10:10:05 +0800 |
commit | a01dfc76dc4fe9374f25d7fde53a78c4cf7efd0e (patch) | |
tree | 51415e9b150ae8e8de2db5a3d7c529f90829bd90 /calendar/gui/tasks-component.c | |
parent | 677df14504c5ad80efbb417c6ceea8d8494e583d (diff) | |
download | gsoc2013-evolution-a01dfc76dc4fe9374f25d7fde53a78c4cf7efd0e.tar.gz gsoc2013-evolution-a01dfc76dc4fe9374f25d7fde53a78c4cf7efd0e.tar.zst gsoc2013-evolution-a01dfc76dc4fe9374f25d7fde53a78c4cf7efd0e.zip |
Fix compiler warnings in the calendar directory (#439122).
svn path=/trunk/; revision=33625
Diffstat (limited to 'calendar/gui/tasks-component.c')
-rw-r--r-- | calendar/gui/tasks-component.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/tasks-component.c b/calendar/gui/tasks-component.c index 723c19d8a7..3965517dde 100644 --- a/calendar/gui/tasks-component.c +++ b/calendar/gui/tasks-component.c @@ -750,7 +750,7 @@ selector_tree_drag_data_received (GtkWidget *widget, if (E_IS_SOURCE_GROUP (source) || e_source_get_readonly (source)) goto finish; - icalcomp = icalparser_parse_string (data->data); + icalcomp = icalparser_parse_string ((char *)data->data); if (icalcomp) { const char * uid; |