diff options
author | Damon Chaplin <damon@ximian.com> | 2001-11-06 07:40:05 +0800 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2001-11-06 07:40:05 +0800 |
commit | 7424f4066fc2180ade37b8df957a9837bc7ecbd2 (patch) | |
tree | 6f3c27a5be53bc2add8c286722203a7c193142ae /calendar | |
parent | 2a716127b6c2ec557a411f57e64cfd4678e0d081 (diff) | |
download | gsoc2013-evolution-7424f4066fc2180ade37b8df957a9837bc7ecbd2.tar.gz gsoc2013-evolution-7424f4066fc2180ade37b8df957a9837bc7ecbd2.tar.zst gsoc2013-evolution-7424f4066fc2180ade37b8df957a9837bc7ecbd2.zip |
removed ';' in the wrong place. Fixes bug #14421.
2001-11-05 Damon Chaplin <damon@ximian.com>
* gui/calendar-model.c (dup_date_edit_value): removed ';' in the wrong
place. Fixes bug #14421.
svn path=/trunk/; revision=14600
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/calendar-model.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 99b889188f..8c608553e1 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2001-11-05 Damon Chaplin <damon@ximian.com> + + * gui/calendar-model.c (dup_date_edit_value): removed ';' in the wrong + place. Fixes bug #14421. + 2001-11-05 Dan Winship <danw@ximian.com> * gui/alarm-notify/Makefile.am (evolution_alarm_notify_LDFLAGS): diff --git a/calendar/gui/calendar-model.c b/calendar/gui/calendar-model.c index bba7c061e9..59eceb70bb 100644 --- a/calendar/gui/calendar-model.c +++ b/calendar/gui/calendar-model.c @@ -1411,7 +1411,7 @@ dup_date_edit_value (const void *value) { ECellDateEditValue *dv, *orig_dv; - if (value == NULL); + if (value == NULL) return NULL; orig_dv = (ECellDateEditValue*) value; |