diff src/aim.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 e23909729192
children 1c5d35f767c5
line wrap: on
line diff
--- a/src/aim.c	Mon Sep 16 07:04:55 2002 +0000
+++ b/src/aim.c	Mon Sep 16 08:35:24 2002 +0000
@@ -63,6 +63,7 @@
 GSList *away_messages = NULL;
 GList *conversations = NULL;
 GSList *message_queue = NULL;
+GSList *unread_message_queue = NULL;
 GSList *away_time_queue = NULL;
 
 GtkWidget *mainwindow = NULL;
@@ -98,7 +99,7 @@
 {
 #ifdef GAIM_PLUGINS
 	/* first we tell those who have requested it we're quitting */
-	plugin_event(event_quit, 0, 0, 0, 0);
+	plugin_event(event_quit);
 
 	/* then we remove everyone in a mass suicide */
 	remove_all_plugins();