On Wed, Dec 21, 2005 at 09:28:54 -0600, Laurence Vanek wrote: > Ran into new issue attempting to build calendar module from fresh cvs > update. > > ========== > . > . > . > > e_mod_main.c: In function 'e_modapi_config': > e_mod_main.c:134: error: 'struct _calendar' has no member named 'con' > make[3]: *** [e_mod_main.lo] Error 1 > make[3]: Leaving directory `/home/lvanek/e_modules/calendar/src' > make[2]: *** [all-recursive] Error 1 > make[2]: Leaving directory `/home/lvanek/e_modules/calendar/src' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory `/home/lvanek/e_modules/calendar' > make: *** [all] Error 2 > ========== Patch attached.
Falko
--- calendar/src/e_mod_main.c 2005-12-21 01:33:05.000000000 +0100 +++ calendar.org/src/e_mod_main.c 2005-12-22 11:17:42.075367500 +0100 @@ -131,7 +131,7 @@ Calendar *calendar; calendar = m->data; - if (calendar) e_int_config_calendar(calendar->con, calendar); + if (calendar) e_int_config_calendar(calendar->conf, calendar); return 1; } --- calendar/src/cal_face_func.c 2005-12-21 01:33:05.000000000 +0100 +++ calendar.org/src/cal_face_func.c 2005-12-22 11:18:17.065554250 +0100 @@ -29,7 +29,7 @@ face = calendar_face_new(con,calendar); if (face) { - calendar->con = con; + calendar->conf = con; calendar->faces = evas_list_append(calendar->faces, face); mi = e_menu_item_new(calendar->config_menu); e_menu_item_label_set(mi, con->name);