comparison libpurple/protocols/jabber/jabber.c @ 25289:aa876d48b5b2

Some more struct hiding.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Fri, 31 Oct 2008 09:24:43 +0000
parents 5ace6c024230
children 10e1f3c1d0db
comparison
equal deleted inserted replaced
25288:da46097b4722 25289:aa876d48b5b2
1879 JabberID *jid; 1879 JabberID *jid;
1880 1880
1881 if(!(jid = jabber_id_new(name))) 1881 if(!(jid = jabber_id_new(name)))
1882 return NULL; 1882 return NULL;
1883 1883
1884 for(gnode = purple_blist_get_root(); gnode; gnode = gnode->next) { 1884 for(gnode = purple_blist_get_root(); gnode;
1885 for(cnode = gnode->child; cnode; cnode = cnode->next) { 1885 gnode = purple_blist_node_get_sibling_next(gnode)) {
1886 for(cnode = purple_blist_node_get_first_child(gnode);
1887 cnode;
1888 cnode = purple_blist_node_get_sibling_next(cnode)) {
1886 PurpleChat *chat = (PurpleChat*)cnode; 1889 PurpleChat *chat = (PurpleChat*)cnode;
1887 const char *room, *server; 1890 const char *room, *server;
1888 GHashTable *components; 1891 GHashTable *components;
1889 if(!PURPLE_BLIST_NODE_IS_CHAT(cnode)) 1892 if(!PURPLE_BLIST_NODE_IS_CHAT(cnode))
1890 continue; 1893 continue;