diff src/protocols/irc/irc.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 a4622f1fb5a1
children 90fd056e755d
line wrap: on
line diff
--- a/src/protocols/irc/irc.c	Tue Sep 02 03:34:37 2003 +0000
+++ b/src/protocols/irc/irc.c	Tue Sep 02 03:41:10 2003 +0000
@@ -36,8 +36,8 @@
 
 static void irc_buddy_append(char *name, struct irc_buddy *ib, GString *string);
 
-static const char *irc_blist_icon(GaimAccount *a, struct buddy *b);
-static void irc_blist_emblems(struct buddy *b, char **se, char **sw, char **nw, char **ne);
+static const char *irc_blist_icon(GaimAccount *a, GaimBuddy *b);
+static void irc_blist_emblems(GaimBuddy *b, char **se, char **sw, char **nw, char **ne);
 static GList *irc_away_states(GaimConnection *gc);
 /* static GList *irc_chat_info(GaimConnection *gc); */
 static void irc_login(GaimAccount *account);
@@ -91,12 +91,12 @@
 	g_string_append_printf(string, "%s ", name);
 }
 
-static const char *irc_blist_icon(GaimAccount *a, struct buddy *b)
+static const char *irc_blist_icon(GaimAccount *a, GaimBuddy *b)
 {
 	return "irc";
 }
 
-static void irc_blist_emblems(struct buddy *b, char **se, char **sw, char **nw, char **ne)
+static void irc_blist_emblems(GaimBuddy *b, char **se, char **sw, char **nw, char **ne)
 {
 	if (b->present == GAIM_BUDDY_OFFLINE)
 		*se = "offline";