changeset 7100:abdc55ffadba

[gaim-migrate @ 7665] Update plugins to the new API changes. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 01 Oct 2003 04:09:54 +0000
parents 8130adad8b7a
children 6ca56650d11a
files plugins/gaim-remote/remote.c plugins/tcl/tcl_cmds.c plugins/ticker/ticker.c
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/gaim-remote/remote.c	Wed Oct 01 04:07:31 2003 +0000
+++ b/plugins/gaim-remote/remote.c	Wed Oct 01 04:09:54 2003 +0000
@@ -157,7 +157,7 @@
 		}
 
 		gaim_debug(GAIM_DEBUG_MISC, "gaim_remote_handle_uri", "who: %s\n", who);
-		show_add_buddy(gc, who, group, NULL);
+		gaim_blist_request_add_buddy(gc->account, who, group, NULL);
 		g_free(who);
 		if (group)
 			g_free(group);
--- a/plugins/tcl/tcl_cmds.c	Wed Oct 01 04:07:31 2003 +0000
+++ b/plugins/tcl/tcl_cmds.c	Wed Oct 01 04:09:54 2003 +0000
@@ -257,7 +257,7 @@
 	Tcl_Obj *list, *tclgroup, *tclgrouplist, *tclcontact, *tclcontactlist, *tclbud, **elems, *result;
 	char *cmds[] = { "alias", "handle", "info", "list", NULL };
 	enum { CMD_BUDDY_ALIAS, CMD_BUDDY_HANDLE, CMD_BUDDY_INFO, CMD_BUDDY_LIST } cmd;
-	struct gaim_buddy_list *blist;
+	GaimBuddyList *blist;
 	GaimBlistNode *node, *gnode, *bnode;
 	GaimAccount *account;
 	GaimBuddy *bud;
--- a/plugins/ticker/ticker.c	Wed Oct 01 04:07:31 2003 +0000
+++ b/plugins/ticker/ticker.c	Wed Oct 01 04:09:54 2003 +0000
@@ -185,7 +185,7 @@
 
 static void buddy_ticker_show()
 {
-	struct gaim_buddy_list *list = gaim_get_blist();
+	GaimBuddyList *list = gaim_get_blist();
 	GaimBlistNode *gnode, *cnode, *bnode;
 	GaimBuddy *b;