diff options
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/gnome-cal.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 4fe959dfae..5776c846cc 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,12 @@ 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. + +2007-11-05 Milan Crha <mcrha@redhat.com> + ** Fix for bug #351932 * gui/dialogs/task-page.c: (check_start_before_end), (times_updated), 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, |