diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-07-19 05:50:40 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-07-19 05:50:40 +0800 |
commit | f939dcc6c8259dc6156d95a3a65581a2b3b51061 (patch) | |
tree | b4824ddcabbcc4736a814741e1bd4e2d665bbebf /my-evolution/e-summary.c | |
parent | cdd1ac0d65dfaed0934f84ce8fbe50d1f055e8ea (diff) | |
download | gsoc2013-evolution-f939dcc6c8259dc6156d95a3a65581a2b3b51061.tar gsoc2013-evolution-f939dcc6c8259dc6156d95a3a65581a2b3b51061.tar.gz gsoc2013-evolution-f939dcc6c8259dc6156d95a3a65581a2b3b51061.tar.bz2 gsoc2013-evolution-f939dcc6c8259dc6156d95a3a65581a2b3b51061.tar.lz gsoc2013-evolution-f939dcc6c8259dc6156d95a3a65581a2b3b51061.tar.xz gsoc2013-evolution-f939dcc6c8259dc6156d95a3a65581a2b3b51061.tar.zst gsoc2013-evolution-f939dcc6c8259dc6156d95a3a65581a2b3b51061.zip |
More stuff
svn path=/trunk/; revision=11214
Diffstat (limited to 'my-evolution/e-summary.c')
-rw-r--r-- | my-evolution/e-summary.c | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/my-evolution/e-summary.c b/my-evolution/e-summary.c index 79b42cb23e..0de680557a 100644 --- a/my-evolution/e-summary.c +++ b/my-evolution/e-summary.c @@ -153,21 +153,31 @@ e_summary_draw (ESummary *summary) /* Weather and RDF stuff here */ html = e_summary_weather_get_html (summary); - g_string_append (string, html); + if (html != NULL) { + g_string_append (string, html); + } html = e_summary_rdf_get_html (summary); - g_string_append (string, html); + if (html != NULL) { + g_string_append (string, html); + } g_string_append (string, HTML_4); html = (char *) e_summary_mail_get_html (summary); - - g_string_append (string, html); + if (html != NULL) { + g_string_append (string, html); + } html = (char *) e_summary_calendar_get_html (summary); - g_string_append (string, html); + if (html != NULL) { + g_string_append (string, html); + } + html = (char *) e_summary_tasks_get_html (summary); - g_string_append (string, html); + if (html != NULL) { + g_string_append (string, html); + } g_string_append (string, HTML_5); |