diff src/protocols/jabber/message.c @ 7118:bf630f7dfdcd

[gaim-migrate @ 7685] Here's a commit that I think will make faceprint happy. GaimWindow -> GaimConvWindow, GaimIm -> GaimConvIm, GaimChat -> GaimConvChat, GaimBlistChat -> GaimChat, and updated the API functions as well. Plugin authors are going to hunt me down and murder me. I can feel it.. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 02 Oct 2003 02:54:07 +0000
parents c8bf2da398e3
children eba5f7be0bc8
line wrap: on
line diff
--- a/src/protocols/jabber/message.c	Thu Oct 02 02:15:36 2003 +0000
+++ b/src/protocols/jabber/message.c	Thu Oct 02 02:54:07 2003 +0000
@@ -93,7 +93,7 @@
 		return;
 
 	if(jm->subject)
-		gaim_chat_set_topic(GAIM_CHAT(chat->conv), jid->resource, jm->subject);
+		gaim_conv_chat_set_topic(GAIM_CONV_CHAT(chat->conv), jid->resource, jm->subject);
 
 	serv_got_chat_in(jm->js->gc, chat->id, jabber_get_resource(jm->from),
 			0, jm->xhtml ? jm->xhtml : jm->body, jm->sent);
@@ -326,7 +326,7 @@
 }
 
 int jabber_message_send_im(GaimConnection *gc, const char *who, const char *msg,
-		GaimImFlags flags)
+		GaimConvImFlags flags)
 {
 	JabberMessage *jm;
 	JabberBuddy *jb;