diff options
author | Nuno Ferreira <nuno@src.gnome.org> | 1998-08-12 06:05:55 +0800 |
---|---|---|
committer | Nuno Ferreira <nuno@src.gnome.org> | 1998-08-12 06:05:55 +0800 |
commit | 4131f00f3470804d007194f2a0c71446074db5bc (patch) | |
tree | 201ba5d0ddf2d8445c136264cc849bdb2f7d6a30 /calendar/gui/eventedit.c | |
parent | 340b547a812fccaa0b7f57511eef820b74d07a55 (diff) | |
download | gsoc2013-evolution-4131f00f3470804d007194f2a0c71446074db5bc.tar gsoc2013-evolution-4131f00f3470804d007194f2a0c71446074db5bc.tar.gz gsoc2013-evolution-4131f00f3470804d007194f2a0c71446074db5bc.tar.bz2 gsoc2013-evolution-4131f00f3470804d007194f2a0c71446074db5bc.tar.lz gsoc2013-evolution-4131f00f3470804d007194f2a0c71446074db5bc.tar.xz gsoc2013-evolution-4131f00f3470804d007194f2a0c71446074db5bc.tar.zst gsoc2013-evolution-4131f00f3470804d007194f2a0c71446074db5bc.zip |
Made title i18n friendly. This was bug #215.
* main.c (new_calendar): Made title i18n friendly. This was bug #215.
* eventedit.c (ee_store_recur_end_to_ical): Set recur->enddate to
recur->_enddate, not to itself, when adding recurring event and supplying
an end date. This fixes (at least part of) bug #99.
svn path=/trunk/; revision=310
Diffstat (limited to 'calendar/gui/eventedit.c')
-rw-r--r-- | calendar/gui/eventedit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/eventedit.c b/calendar/gui/eventedit.c index 4cc9ce65b6..3189b11300 100644 --- a/calendar/gui/eventedit.c +++ b/calendar/gui/eventedit.c @@ -611,7 +611,7 @@ ee_store_recur_end_to_ical (EventEditor *ee) case 1: /* end date */ ical->recur->_enddate = gnome_date_edit_get_date (GNOME_DATE_EDIT (ee->recur_ed_end_on)); - ical->recur->enddate = ical->recur->enddate; + ical->recur->enddate = ical->recur->_enddate; ical->recur->duration = 0; break; |