diff src/oscar.c @ 472:6a92cd7322cc

[gaim-migrate @ 482] merged chat and IM windows. /me is now in IM, font/color dialogs in chat, and smileys in chat too. also, fixed the GOOD bug. i don't know what kind of crack rob was smoking when he decided O could be eyes. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sun, 09 Jul 2000 23:19:21 +0000
parents b5c2359d633e
children 64afc8f41bcb
line wrap: on
line diff
--- a/src/oscar.c	Sun Jul 09 18:06:11 2000 +0000
+++ b/src/oscar.c	Sun Jul 09 23:19:21 2000 +0000
@@ -720,7 +720,7 @@
 	struct aim_userinfo_s *info;
 
 	GList *bcs = buddy_chats;
-	struct buddy_chat *b = NULL;
+	struct conversation *b = NULL;
 
 	va_start(ap, command);
 	count = va_arg(ap, int);
@@ -728,7 +728,7 @@
 	va_end(ap);
 
 	while(bcs) {
-		b = (struct buddy_chat *)bcs->data;
+		b = (struct conversation *)bcs->data;
 		if (!strcasecmp(b->name, (char *)command->conn->priv))
 			break;	
 		bcs = bcs->next;
@@ -750,7 +750,7 @@
 	struct aim_userinfo_s *info;
 
 	GList *bcs = buddy_chats;
-	struct buddy_chat *b = NULL;
+	struct conversation *b = NULL;
 
 	va_start(ap, command);
 	count = va_arg(ap, int);
@@ -758,7 +758,7 @@
 	va_end(ap);
 
 	while(bcs) {
-		b = (struct buddy_chat *)bcs->data;
+		b = (struct conversation *)bcs->data;
 		if (!strcasecmp(b->name, (char *)command->conn->priv))
 			break;	
 		bcs = bcs->next;
@@ -787,14 +787,14 @@
 	char *msg;
 
 	GList *bcs = buddy_chats;
-	struct buddy_chat *b = NULL;
+	struct conversation *b = NULL;
 
 	va_start(ap, command);
 	info = va_arg(ap, struct aim_userinfo_s *);
 	msg  = va_arg(ap, char *);
 
 	while(bcs) {
-		b = (struct buddy_chat *)bcs->data;
+		b = (struct conversation *)bcs->data;
 		if (!strcasecmp(b->name, (char *)command->conn->priv))
 			break;
 		bcs = bcs->next;