diff src/protocols/msn/msn.c @ 6695:0c5637b5462e

[gaim-migrate @ 7221] This is contact support. Really. It has a few bugs left in it, like sorting not working, and stuff like that, but it's pretty solid for the most part. I'm not in the mood to do a whole lot of typing, so just use and enjoy. committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Tue, 02 Sep 2003 03:41:10 +0000
parents 7e2d2c8e88a8
children b7e113a59b51
line wrap: on
line diff
--- a/src/protocols/msn/msn.c	Tue Sep 02 03:34:37 2003 +0000
+++ b/src/protocols/msn/msn.c	Tue Sep 02 03:41:10 2003 +0000
@@ -270,13 +270,13 @@
  **************************************************************************/
 
 static const char *
-msn_list_icon(GaimAccount *a, struct buddy *b)
+msn_list_icon(GaimAccount *a, GaimBuddy *b)
 {
 	return "msn";
 }
 
 static void
-msn_list_emblems(struct buddy *b, char **se, char **sw,
+msn_list_emblems(GaimBuddy *b, char **se, char **sw,
 				 char **nw, char **ne)
 {
 	MsnUser *user;
@@ -308,7 +308,7 @@
 }
 
 static char *
-msn_status_text(struct buddy *b)
+msn_status_text(GaimBuddy *b)
 {
 	if (b->uc & UC_UNAVAILABLE)
 		return g_strdup(msn_away_get_text(MSN_AWAY_TYPE(b->uc)));
@@ -317,7 +317,7 @@
 }
 
 static char *
-msn_tooltip_text(struct buddy *b)
+msn_tooltip_text(GaimBuddy *b)
 {
 	char *text = NULL;
 	/* MsnUser *user = b->proto_data; */
@@ -403,7 +403,7 @@
 	GaimAccount *account = gaim_connection_get_account(gc);
 	MsnUser *user;
 	struct proto_buddy_menu *pbm;
-	struct buddy *b;
+	GaimBuddy *b;
 	GList *m = NULL;
 
 	b = gaim_find_buddy(gc->account, who);
@@ -1116,7 +1116,7 @@
 }
 
 static void
-msn_buddy_free(struct buddy *b)
+msn_buddy_free(GaimBuddy *b)
 {
 	if (b->proto_data != NULL) {
 		msn_user_destroy(b->proto_data);