diff plugins/SIGNALS @ 1038:daad2440a642

[gaim-migrate @ 1048] i have homework i need to be doing. it's due in less than 7 hours, and i haven't started and i need to sleep. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 31 Oct 2000 10:49:53 +0000
parents 91b7377e7b45
children 4927ce25d8cc
line wrap: on
line diff
--- a/plugins/SIGNALS	Tue Oct 31 09:48:42 2000 +0000
+++ b/plugins/SIGNALS	Tue Oct 31 10:49:53 2000 +0000
@@ -11,7 +11,6 @@
 	event_buddy_back,
 	event_buddy_idle,
 	event_buddy_unidle,
-	event_blist_update,
 	event_chat_invited,
 	event_chat_join,
 	event_chat_leave,
@@ -101,42 +100,36 @@
 		do so ;-) .)
 
 event_buddy_signon:
-	char *who
+	struct gaim_connection *gc, char *who
 	
 	'who' is who signed on. (There is currently no way to see which connection
 	reported that the buddy came online. Hopefully this will happen soon.)
 
 event_buddy_signoff:
-	char *who
+	struct gaim_connection *gc, char *who
 
 	'who' is who signed off.
 
 event_buddy_away:
-	char *who
+	struct gaim_connection *gc, char *who
 
 	'who' is who went away.
 
 event_buddy_back:
-	char *who
+	struct gaim_connection *gc, char *who
 
 	'who' is who is no longer away.
 
 event_buddy_idle:
-	char *who
+	struct gaim_connection *gc, char *who
 
 	'who' is who went idle.
 
 event_buddy_unidle:
-	char *who
+	struct gaim_connection *gc, char *who
 
 	'who' is who is no longer idle.
 
-event_blist_update:
-	(none)
-	
-	This event is called when the buddylist is updated (automatically every
-	20 seconds for every connection, though the updates are usually syncopated)
-
 event_chat_invited:
 	struct gaim_connection *gc, char *who, char *room, char *message