diff src/protocols/jabber/jabber.c @ 5679:0a0116686d51

[gaim-migrate @ 6097] let the prpls know about the new API changes committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Mon, 02 Jun 2003 22:24:07 +0000
parents 0bdfa28c678e
children 46d7ad0dfa26
line wrap: on
line diff
--- a/src/protocols/jabber/jabber.c	Mon Jun 02 22:17:30 2003 +0000
+++ b/src/protocols/jabber/jabber.c	Mon Jun 02 22:24:07 2003 +0000
@@ -226,7 +226,7 @@
 struct jabber_chat {
 	gaim_jid gjid;
 	GaimConnection *gc;
-	struct gaim_conversation *b;
+	GaimConversation *b;
 	int id;
 	int state;
 };
@@ -838,10 +838,10 @@
 /*
  * Find chat by chat group name
  */
-static struct gaim_conversation *find_chat(GaimConnection *gc, char *name)
+static GaimConversation *find_chat(GaimConnection *gc, char *name)
 {
 	GSList *bcs = gc->buddy_chats;
-	struct gaim_conversation *b = NULL;
+	GaimConversation *b = NULL;
 	char *chat = g_strdup(normalize(name));
 
 	while (bcs) {
@@ -871,7 +871,7 @@
 static int jabber_find_chat_by_convo_id(GaimConnection *gc, int id, struct jabber_chat **jc)
 {
 	GSList *bcs = gc->buddy_chats;
-	struct gaim_conversation *b = NULL;
+	GaimConversation *b = NULL;
 	struct jabber_data *jd = gc->proto_data;
 
 	*jc = NULL;
@@ -954,7 +954,7 @@
 	return jc;
 }
 
-static gboolean find_chat_buddy(struct gaim_conversation *b, char *name)
+static gboolean find_chat_buddy(GaimConversation *b, char *name)
 {
 	GList *m = gaim_chat_get_users(GAIM_CHAT(b));
 
@@ -1504,7 +1504,7 @@
 	xmlnode y;
 	char *show;
 	int state = 0;
-	struct gaim_conversation *cnv = NULL;
+	GaimConversation *cnv = NULL;
 	struct jabber_chat *jc = NULL;
 	int priority = 0;
 	struct jabber_buddy_data *jbd;