Ticket #96: gadugadu.patch

  • eds-feed/src/main.c

    old new  
    2828static EBookView *book_view = NULL; 
    2929static EBook *book = NULL; 
    3030static gulong book_view_tag = 0; 
    31 static GalagoService *aim, *groupwise, *jabber, *yahoo, *msn, *icq
     31static GalagoService *aim, *groupwise, *jabber, *yahoo, *msn, *icq, *gadugadu
    3232 
    3333static void 
    3434add_accounts(GalagoPerson *person, EContact *contact, 
     
    235235        add_remove_accounts(person, contact, yahoo,     E_CONTACT_IM_YAHOO); 
    236236        add_remove_accounts(person, contact, msn,       E_CONTACT_IM_MSN); 
    237237        add_remove_accounts(person, contact, icq,       E_CONTACT_IM_ICQ); 
     238        add_remove_accounts(person, contact, gadugadu,  E_CONTACT_IM_GADUGADU); 
    238239    } 
    239240} 
    240241 
     
    261262        add_accounts(person, contact, yahoo,     E_CONTACT_IM_YAHOO); 
    262263        add_accounts(person, contact, msn,       E_CONTACT_IM_MSN); 
    263264        add_accounts(person, contact, icq,       E_CONTACT_IM_ICQ); 
     265        add_accounts(person, contact, gadugadu,  E_CONTACT_IM_GADUGADU); 
    264266    } 
    265267} 
    266268 
     
    328330    ADD_SERVICE(yahoo,     GALAGO_SERVICE_ID_YAHOO); 
    329331    ADD_SERVICE(msn,       GALAGO_SERVICE_ID_MSN); 
    330332    ADD_SERVICE(icq,       GALAGO_SERVICE_ID_ICQ); 
     333    ADD_SERVICE(gadugadu,  GALAGO_SERVICE_ID_GADUGADU); 
    331334#undef ADD_SERVICE 
    332335} 
    333336