diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-09-19 02:41:21 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-09-19 02:41:21 +0800 |
commit | 00d81264c73eebb83e911f3a0b80e3f00cc3701e (patch) | |
tree | 48c3d6a11700e7d707707bfb53a3d16562929afe /my-evolution/e-summary-tasks.c | |
parent | 5a5022fd46edd2064c05d9191b1a0b6b71688b31 (diff) | |
download | gsoc2013-evolution-00d81264c73eebb83e911f3a0b80e3f00cc3701e.tar gsoc2013-evolution-00d81264c73eebb83e911f3a0b80e3f00cc3701e.tar.gz gsoc2013-evolution-00d81264c73eebb83e911f3a0b80e3f00cc3701e.tar.bz2 gsoc2013-evolution-00d81264c73eebb83e911f3a0b80e3f00cc3701e.tar.lz gsoc2013-evolution-00d81264c73eebb83e911f3a0b80e3f00cc3701e.tar.xz gsoc2013-evolution-00d81264c73eebb83e911f3a0b80e3f00cc3701e.tar.zst gsoc2013-evolution-00d81264c73eebb83e911f3a0b80e3f00cc3701e.zip |
Do appends instead of prepends in places.
Don't print a (null).
svn path=/trunk/; revision=12941
Diffstat (limited to 'my-evolution/e-summary-tasks.c')
-rw-r--r-- | my-evolution/e-summary-tasks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/my-evolution/e-summary-tasks.c b/my-evolution/e-summary-tasks.c index fe0f763e4f..a44b0dbae2 100644 --- a/my-evolution/e-summary-tasks.c +++ b/my-evolution/e-summary-tasks.c @@ -249,7 +249,7 @@ generate_html (gpointer data) tmp = g_strdup_printf ("<img align=\"middle\" src=\"task.xpm\" " "alt=\"\" width=\"16\" height=\"16\">   " "<font size=\"-1\"><a href=\"evolution:/local/Tasks\">%s</a></font><br>", - text.value); + text.value ? text.value : _("(No Description)")); } else { #if 0 tmp = g_strdup_printf ("<img align=\"middle\" src=\"task.xpm\" " |