comparison plugins/gevolution/gevolution.c @ 9055:a243d688c93c

[gaim-migrate @ 9831] Fix up the recent changes to gevolution to remove a couple warnings. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 24 May 2004 19:16:36 +0000
parents 826013efffcb
children a5ec9e73f46d
comparison
equal deleted inserted replaced
9054:96415a3aa93c 9055:a243d688c93c
197 197
198 g_list_free(contacts); 198 g_list_free(contacts);
199 } 199 }
200 200
201 static void 201 static void
202 menu_item_activate_cb(GaimBlistNode *node) 202 menu_item_activate_cb(GaimBlistNode *node, gpointer user_data)
203 { 203 {
204 GaimBuddy *buddy = (GaimBuddy *)node; 204 GaimBuddy *buddy = (GaimBuddy *)node;
205 gevo_associate_buddy_dialog_new(buddy); 205 gevo_associate_buddy_dialog_new(buddy);
206 } 206 }
207 207
208 static void 208 static void
209 blist_node_extended_menu_cb(GaimBlistNode *node, GList **menu) 209 blist_node_extended_menu_cb(GaimBlistNode *node, GList **menu)
210 { 210 {
211 GaimBlistNodeAction *act; 211 GaimBlistNodeAction *act;
212 GaimBuddy *buddy; 212 GaimBuddy *buddy;
213 GtkWidget *item;
214 213
215 if (!GAIM_BLIST_NODE_IS_BUDDY(node)) 214 if (!GAIM_BLIST_NODE_IS_BUDDY(node))
216 return; 215 return;
217 216
218 buddy = (GaimBuddy *)node; 217 buddy = (GaimBuddy *)node;