diff options
author | Milan Crha <mcrha@redhat.com> | 2007-11-05 19:28:35 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2007-11-05 19:28:35 +0800 |
commit | 65409dae98a7812c1b4c547aabf707ac1f43da2f (patch) | |
tree | 5cbe52a2b51662fc00fcd388b8f259fdbf97ebb3 /calendar/gui | |
parent | 58338b08f3a880320bed171256850d326b895c23 (diff) | |
download | gsoc2013-evolution-65409dae98a7812c1b4c547aabf707ac1f43da2f.tar.gz gsoc2013-evolution-65409dae98a7812c1b4c547aabf707ac1f43da2f.tar.zst gsoc2013-evolution-65409dae98a7812c1b4c547aabf707ac1f43da2f.zip |
** Fix for bug #359267
2007-11-05 Milan Crha <mcrha@redhat.com>
** Fix for bug #359267
* gui/gnome-cal.c: (update_memo_view):
Changed memo_sexp to show always memos without start date.
* Requires EDS since revision 8185.
svn path=/trunk/; revision=34501
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/gnome-cal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index 235ec19582..140f84f3c7 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -1281,7 +1281,7 @@ update_memo_view (GnomeCalendar *gcal) g_free (priv->memo_sexp); } - priv->memo_sexp = g_strdup_printf ("(and (occur-in-time-range? (make-time \"%s\")" + priv->memo_sexp = g_strdup_printf ("(not (has-start?)) or (and (occur-in-time-range? (make-time \"%s\")" " (make-time \"%s\"))" " %s)", iso_start, iso_end, |