diff src/conversation.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 314111e7b601
children e9a730ad5a3c
line wrap: on
line diff
--- a/src/conversation.c	Tue Sep 02 03:34:37 2003 +0000
+++ b/src/conversation.c	Tue Sep 02 03:41:10 2003 +0000
@@ -1195,7 +1195,7 @@
 gaim_conversation_autoset_title(GaimConversation *conv)
 {
 	GaimAccount *account;
-	struct buddy *b;
+	GaimBuddy *b;
 	const char *text, *name;
 
 	g_return_if_fail(conv != NULL);
@@ -1437,7 +1437,7 @@
 	GaimAccount *account;
 	GaimConversationUiOps *ops;
 	GaimWindow *win;
-	struct buddy *b;
+	GaimBuddy *b;
 	GaimUnseenState unseen;
 	/* int logging_font_options = 0; */
 
@@ -1471,7 +1471,7 @@
 			if (who == NULL) {
 				if (flags & GAIM_MESSAGE_SEND) {
 					b = gaim_find_buddy(account,
-										gaim_account_get_username(account));
+							gaim_account_get_username(account));
 
 					if (b != NULL && strcmp(b->name, gaim_get_buddy_alias(b)))
 						who = gaim_get_buddy_alias(b);
@@ -2270,8 +2270,8 @@
 	type = gaim_conversation_get_type(conv);
 
 	if (type == GAIM_CONV_IM) {
-		struct buddy *b;
-		struct group *grp = NULL;
+		GaimBuddy *b;
+		GaimGroup *grp = NULL;
 		GList *wins, *convs;
 
 		b = gaim_find_buddy(gaim_conversation_get_account(conv),
@@ -2284,8 +2284,8 @@
 		for (wins = gaim_get_windows(); wins != NULL; wins = wins->next) {
 			GaimWindow *win2;
 			GaimConversation *conv2;
-			struct buddy *b2;
-			struct group *g2 = NULL;
+			GaimBuddy *b2;
+			GaimGroup *g2 = NULL;
 
 			win2 = (GaimWindow *)wins->data;
 
@@ -2313,8 +2313,8 @@
 		conv_placement_new_window(conv);
 	}
 	else if (type == GAIM_CONV_CHAT) {
-		struct chat *chat;
-		struct group *group = NULL;
+		GaimBlistChat *chat;
+		GaimGroup *group = NULL;
 		GList *wins, *convs;
 
 		chat = gaim_blist_find_chat(gaim_conversation_get_account(conv),
@@ -2327,8 +2327,8 @@
 		for (wins = gaim_get_windows(); wins != NULL; wins = wins->next) {
 			GaimWindow *win2;
 			GaimConversation *conv2;
-			struct chat *chat2;
-			struct group *group2 = NULL;
+			GaimBlistChat *chat2;
+			GaimGroup *group2 = NULL;
 
 			win2 = (GaimWindow *)wins->data;