Use the contents of ee->ical->dtstart for computing the predefined values

1998-05-25  Miguel de Icaza  <miguel@nuclecu.unam.mx>

	* eventedit.c (ee_rp_init_rule): Use the contents of
	ee->ical->dtstart for computing the predefined values of the recurrence.

svn path=/trunk/; revision=239
This commit is contained in:
Miguel de Icaza
1998-05-26 04:10:07 +00:00
committed by Arturo Espinosa
parent 9dd60a1845
commit 8a0171737e
3 changed files with 7 additions and 8 deletions

View File

@ -1,5 +1,8 @@
1998-05-25 Miguel de Icaza <miguel@nuclecu.unam.mx>
* eventedit.c (ee_rp_init_rule): Use the contents of
ee->ical->dtstart for computing the predefined values of the recurrence.
* gncal-full-day.c (gncal_full_day_unrealize): Fix the gc
destruction in the unrealization code and fix the pixmap unrefing.

View File

@ -938,12 +938,10 @@ ee_rp_init_rule (EventEditor *ee)
GSList *group;
int i, page, day_period, week_period, month_period, year_period;
int week_vector, default_day, def_pos, def_off;
time_t now;
struct tm *tm;
now = time (NULL);
tm = localtime (&now);
tm = localtime (&ee->ical->dtstart);
f = gtk_frame_new (_("Recurrence rule"));
hbox = gtk_hbox_new (FALSE, 4);

View File

@ -938,12 +938,10 @@ ee_rp_init_rule (EventEditor *ee)
GSList *group;
int i, page, day_period, week_period, month_period, year_period;
int week_vector, default_day, def_pos, def_off;
time_t now;
struct tm *tm;
now = time (NULL);
tm = localtime (&now);
tm = localtime (&ee->ical->dtstart);
f = gtk_frame_new (_("Recurrence rule"));
hbox = gtk_hbox_new (FALSE, 4);