Falko Schmidt wrote:

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);
Thanks for the patch. Apparently I must have been asleep when I wrote the original post. My last comment refers to the infamous weather module problem.


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to