diff plugins/perl/perl.c @ 5676:dae79aefac8d

[gaim-migrate @ 6094] I've been meaning to do this for a LONG time. The conversation API now follows the naming convention of the rest of the new APIs. I'll get some g_return_*_if_fail() checks in there soon. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 02 Jun 2003 21:51:06 +0000
parents cde28f5c47d4
children 171fdd5493b9
line wrap: on
line diff
--- a/plugins/perl/perl.c	Mon Jun 02 21:14:50 2003 +0000
+++ b/plugins/perl/perl.c	Mon Jun 02 21:51:06 2003 +0000
@@ -797,7 +797,7 @@
 XS (XS_GAIM_write_to_conv)
 {
 	char *nick, *who, *what;
-	struct gaim_conversation *c;
+	GaimConversation *c;
 	int junk;
 	int send, wflags;
 	dXSARGS;
@@ -853,7 +853,7 @@
 	GaimConnection *gc;
 	char *nick, *what;
 	int isauto;
-	struct gaim_conversation *c;
+	GaimConversation *c;
 	unsigned int junk;
 	dXSARGS;
 	items = 0;
@@ -887,7 +887,7 @@
 	GaimConnection *gc;
 	int id;
 	char *what;
-	struct gaim_conversation *b = NULL;
+	GaimConversation *b = NULL;
 	GSList *bcs;
 	unsigned int junk;
 	dXSARGS;
@@ -903,7 +903,7 @@
 	}
 	bcs = gc->buddy_chats;
 	while (bcs) {
-		b = (struct gaim_conversation *)bcs->data;
+		b = (GaimConversation *)bcs->data;
 
 		if (gaim_chat_get_id(gaim_conversation_get_chat_data(b)) == id)
 			break;