aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/cal-util
diff options
context:
space:
mode:
authorDamon Chaplin <damon@ximian.com>2001-07-18 10:48:28 +0800
committerDamon Chaplin <damon@src.gnome.org>2001-07-18 10:48:28 +0800
commita948383e584d580f1da95830b08a0b8390054445 (patch)
tree69a10bda0d12b97b81756d3764943d5787c581af /calendar/cal-util
parenta72b3b2245ff0aaf6bd35cd229357e5aec4378ad (diff)
downloadgsoc2013-evolution-a948383e584d580f1da95830b08a0b8390054445.tar
gsoc2013-evolution-a948383e584d580f1da95830b08a0b8390054445.tar.gz
gsoc2013-evolution-a948383e584d580f1da95830b08a0b8390054445.tar.bz2
gsoc2013-evolution-a948383e584d580f1da95830b08a0b8390054445.tar.lz
gsoc2013-evolution-a948383e584d580f1da95830b08a0b8390054445.tar.xz
gsoc2013-evolution-a948383e584d580f1da95830b08a0b8390054445.tar.zst
gsoc2013-evolution-a948383e584d580f1da95830b08a0b8390054445.zip
don't show the time in the EDateEdit widget for adding EXDATEs.
2001-07-17 Damon Chaplin <damon@ximian.com> * gui/dialogs/recurrence-page.c (init_widgets): don't show the time in the EDateEdit widget for adding EXDATEs. * cal-util/cal-component.c (cal_component_alarm_set_trigger): don't set t.time.is_date to -1. It is a boolean flag, 0 or 1. We probably don't want a date value, so we leave it at 0. svn path=/trunk/; revision=11193
Diffstat (limited to 'calendar/cal-util')
-rw-r--r--calendar/cal-util/cal-component.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/calendar/cal-util/cal-component.c b/calendar/cal-util/cal-component.c
index d340cea60f..596618733d 100644
--- a/calendar/cal-util/cal-component.c
+++ b/calendar/cal-util/cal-component.c
@@ -4814,14 +4814,12 @@ cal_component_alarm_set_trigger (CalComponentAlarm *alarm, CalAlarmTrigger trigg
switch (trigger.type) {
case CAL_ALARM_TRIGGER_RELATIVE_START:
t.duration = trigger.u.rel_duration;
- t.time.is_date = -1;
value_type = ICAL_VALUE_DURATION;
related = ICAL_RELATED_START;
break;
case CAL_ALARM_TRIGGER_RELATIVE_END:
t.duration = trigger.u.rel_duration;
- t.time.is_date = -1;
value_type = ICAL_VALUE_DURATION;
related = ICAL_RELATED_END;
break;