diff src/buddy_chat.c @ 3517:6b0cb60162f4

[gaim-migrate @ 3590] Rob McQueen added a mute feature to his nice little docklet. I added a queuing feature. Configure the docklet in the plugins dialog to queue unread messages, and when you receive a message the docklet will eat it up and show a little message pending icon. Click on it, and read your message. ICQ people will like it. I also made plugin_event use a va_list. I bet this breaks perl. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Mon, 16 Sep 2002 08:35:24 +0000
parents cfbdfe334975
children bdd0bebd2d04
line wrap: on
line diff
--- a/src/buddy_chat.c	Mon Sep 16 07:04:55 2002 +0000
+++ b/src/buddy_chat.c	Mon Sep 16 08:35:24 2002 +0000
@@ -955,7 +955,7 @@
 	char tmp[BUF_LONG];
 	int pos;
 
-	plugin_event(event_chat_buddy_join, b->gc, (void *)b->id, name, 0);
+	plugin_event(event_chat_buddy_join, b->gc, b->id, name);
 	b->in_room = g_list_insert_sorted(b->in_room, name, insertname);
 	pos = g_list_index(b->in_room, name);
 
@@ -1048,7 +1048,7 @@
 
 	char tmp[BUF_LONG];
 
-	plugin_event(event_chat_buddy_leave, b->gc, (void *)b->id, buddy, 0);
+	plugin_event(event_chat_buddy_leave, b->gc, b->id, buddy);
 
 	while (names) {
 		if (!g_strcasecmp((char *)names->data, buddy)) {