diff src/toc.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 5db3734a1fe6
children d17547ff9c2a
line wrap: on
line diff
--- a/src/toc.c	Sun Jul 09 18:06:11 2000 +0000
+++ b/src/toc.c	Sun Jul 09 23:19:21 2000 +0000
@@ -517,14 +517,14 @@
 		char *in;
 		char *buddy;
                 GList *bcs = buddy_chats;
-		struct buddy_chat *b = NULL;
+		struct conversation *b = NULL;
 		
 		sscanf(strtok(NULL, ":"), "%d", &id);
 
 		in = strtok(NULL, ":");
 
 		while(bcs) {
-			b = (struct buddy_chat *)bcs->data;
+			b = (struct conversation *)bcs->data;
 			if (id == b->id)
 				break;	
 			bcs = bcs->next;