diff plugins/docklet/docklet.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 bdd046deec7e
children dc80d4e5c3b0
line wrap: on
line diff
--- a/plugins/docklet/docklet.c	Thu Oct 02 02:15:36 2003 +0000
+++ b/plugins/docklet/docklet.c	Thu Oct 02 02:54:07 2003 +0000
@@ -376,7 +376,7 @@
 }
 
 static gboolean
-gaim_im_recv(GaimAccount *account, GaimConversation *conv, char **who,
+gaim_conv_im_recv(GaimAccount *account, GaimConversation *conv, char **who,
 			 char **what, int *flags, void *data)
 {
 	/* if message queuing while away is enabled, this event could be the first
@@ -436,7 +436,7 @@
 	gaim_signal_connect(accounts_handle, "account-away",
 						plugin, GAIM_CALLBACK(gaim_away), NULL);
 	gaim_signal_connect(conv_handle, "received-im-msg",
-						plugin, GAIM_CALLBACK(gaim_im_recv), NULL);
+						plugin, GAIM_CALLBACK(gaim_conv_im_recv), NULL);
 	gaim_signal_connect(conv_handle, "conversation-created",
 						plugin, GAIM_CALLBACK(gaim_new_conversation), NULL);