diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-07-03 10:45:58 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-07-03 10:45:58 +0800 |
commit | 29700d38aeb9a90caaed499ac010f7632e9587dc (patch) | |
tree | 23c708ae35cd17f6021bd27b80e62a61ed7ed994 /my-evolution/e-summary.c | |
parent | ed11afdec64d889fbb515ef11897fec3862fe31b (diff) | |
download | gsoc2013-evolution-29700d38aeb9a90caaed499ac010f7632e9587dc.tar.gz gsoc2013-evolution-29700d38aeb9a90caaed499ac010f7632e9587dc.tar.zst gsoc2013-evolution-29700d38aeb9a90caaed499ac010f7632e9587dc.zip |
New tasks stuff
svn path=/trunk/; revision=10715
Diffstat (limited to 'my-evolution/e-summary.c')
-rw-r--r-- | my-evolution/e-summary.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/my-evolution/e-summary.c b/my-evolution/e-summary.c index 830cad4220..1af0b1edac 100644 --- a/my-evolution/e-summary.c +++ b/my-evolution/e-summary.c @@ -137,6 +137,8 @@ e_summary_draw (ESummary *summary) html = (char *) e_summary_calendar_get_html (summary); g_string_append (string, html); + html = (char *) e_summary_tasks_get_html (summary); + g_string_append (string, html); g_string_append (string, HTML_5); @@ -387,6 +389,7 @@ e_summary_new (const GNOME_Evolution_Shell shell) e_summary_mail_init (summary, shell); e_summary_calendar_init (summary); + e_summary_tasks_init (summary); e_summary_rdf_init (summary); e_summary_weather_init (summary); |