Ticket #12: eds-feed-email.diff
-
main.c
old new 28 28 static EBookView *book_view = NULL; 29 29 static EBook *book = NULL; 30 30 static gulong book_view_tag = 0; 31 static GalagoService * aim, *groupwise, *jabber, *yahoo, *msn, *icq;31 static GalagoService *email, *aim, *groupwise, *jabber, *yahoo, *msn, *icq; 32 32 33 33 static void 34 34 add_accounts(GalagoPerson *person, EContact *contact, … … 221 221 222 222 set_attributes(person, contact); 223 223 224 add_remove_accounts(person, contact, email, E_CONTACT_EMAIL); 224 225 add_remove_accounts(person, contact, aim, E_CONTACT_IM_AIM); 225 226 add_remove_accounts(person, contact, groupwise, E_CONTACT_IM_GROUPWISE); 226 227 add_remove_accounts(person, contact, jabber, E_CONTACT_IM_JABBER); … … 247 248 248 249 set_attributes(person, contact); 249 250 251 add_accounts(person, contact, email, E_CONTACT_EMAIL); 250 252 add_accounts(person, contact, aim, E_CONTACT_IM_AIM); 251 253 add_accounts(person, contact, groupwise, E_CONTACT_IM_GROUPWISE); 252 254 add_accounts(person, contact, jabber, E_CONTACT_IM_JABBER); … … 314 316 setup_services(void) 315 317 { 316 318 #define ADD_SERVICE(var, id) (var) = galago_create_service((id), NULL, 0) 319 ADD_SERVICE(email, GALAGO_SERVICE_ID_EMAIL); 317 320 ADD_SERVICE(aim, GALAGO_SERVICE_ID_AIM); 318 321 ADD_SERVICE(groupwise, GALAGO_SERVICE_ID_GROUPWISE); 319 322 ADD_SERVICE(jabber, GALAGO_SERVICE_ID_JABBER);
