comparison src/protocols/silc/silc.c @ 9038:095731b5e4f6

[gaim-migrate @ 9814] Hmm. there's still a compile warning, but at least it compiles now. committer: Tailor Script <tailor@pidgin.im>
author Tim Ringenbach <marv@pidgin.im>
date Sun, 23 May 2004 19:40:55 +0000
parents 7ab20f829190
children bf4ecb0ae208
comparison
equal deleted inserted replaced
9037:960bb3bd9ba6 9038:095731b5e4f6
883 GList *silcgaim_blist_node_menu(GaimBlistNode *node) { 883 GList *silcgaim_blist_node_menu(GaimBlistNode *node) {
884 /* split this single menu building function back into the two 884 /* split this single menu building function back into the two
885 original: one for buddies and one for chats */ 885 original: one for buddies and one for chats */
886 886
887 if(GAIM_BLIST_NODE_IS_CHAT(node)) { 887 if(GAIM_BLIST_NODE_IS_CHAT(node)) {
888 return silcgaim_chat_menu((GaimChar *) node); 888 return silcgaim_chat_menu((GaimChat *) node);
889 } else if(GAIM_BLIST_NODE_IS_BUDDY(node)) { 889 } else if(GAIM_BLIST_NODE_IS_BUDDY(node)) {
890 return silcgaim_buddy_menu((GaimBuddy *) node); 890 return silcgaim_buddy_menu((GaimBuddy *) node);
891 } else { 891 } else {
892 return_val_if_reached(NULL); 892 g_return_val_if_reached(NULL);
893 } 893 }
894 } 894 }
895 895
896 896
897 /************************** Plugin Initialization ****************************/ 897 /************************** Plugin Initialization ****************************/