diff src/protocols/msn/msn.c @ 10662:54ac161a876e

[gaim-migrate @ 12199] Plugins can now add submenus to the right-click menu of a blist node by passing a GList of actions to gaim_blist_node_action_new. I'm thinking about making GaimBlistNodeActions more like plugin prefs so that plugins can create radio and check menu items as well. We'll see if I can do that and not make it ugly/suck. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Mon, 07 Mar 2005 02:19:09 +0000
parents f2e86683cafc
children 41a2c35c0941
line wrap: on
line diff
--- a/src/protocols/msn/msn.c	Mon Mar 07 01:25:05 2005 +0000
+++ b/src/protocols/msn/msn.c	Mon Mar 07 02:19:09 2005 +0000
@@ -616,7 +616,7 @@
 		if (user->mobile)
 		{
 			act = gaim_blist_node_action_new(_("Send to Mobile"),
-											 show_send_to_mobile_cb, NULL);
+											 show_send_to_mobile_cb, NULL, NULL);
 			m = g_list_append(m, act);
 		}
 	}
@@ -625,7 +625,7 @@
 						   gaim_account_get_username(buddy->account)))
 	{
 		act = gaim_blist_node_action_new(_("Initiate _Chat"),
-										 initiate_chat_cb, NULL);
+										 initiate_chat_cb, NULL, NULL);
 		m = g_list_append(m, act);
 	}