src/protocols/icq/gaim_icq.c

changeset 4687
91ad36873636
parent 4634
c4318fc60090
child 4690
e30dbd5b361f
--- a/src/protocols/icq/gaim_icq.c	Mon Mar 10 04:51:10 2003 +0000
+++ b/src/protocols/icq/gaim_icq.c	Mon Mar 10 05:30:31 2003 +0000
@@ -274,7 +274,7 @@
 		icq_SendAuthMsg(iq->link, iq->uin);
 
 		g_snprintf(uin, sizeof(uin), "%ld", iq->uin);
-		if (find_buddy(iq->gc->account, uin))
+		if (gaim_find_buddy(iq->gc->account, uin))
 			return;
 
 		iqnew = g_memdup(iq, sizeof(struct icq_auth));
@@ -441,8 +441,11 @@
 	}
 }
 
-static char **icq_list_icon(int uc) {
-	guint status;
+static const char *icq_list_icon(struct gaim_account *a, struct buddy *b) {
+	return "icq";
+}
+
+/*	guint status;
 	if (uc == 0)
 		return icon_online_xpm;
 	status = uc >> 1;
@@ -459,7 +462,7 @@
 	if (status & STATUS_INVISIBLE)
 		return NULL;
 	return icon_online_xpm;
-}
+	}*/
 
 static void icq_get_info(struct gaim_connection *gc, char *who) {
 	struct icq_data *id = (struct icq_data *)gc->proto_data;

mercurial