diff src/buddy.c @ 1000:91b7377e7b45

[gaim-migrate @ 1010] Plugins work again, I think. There may still be some bugginess. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Mon, 16 Oct 2000 20:11:18 +0000
parents 3dbc2cd326e2
children 1d8f05ea6bdf
line wrap: on
line diff
--- a/src/buddy.c	Sun Oct 15 03:55:23 2000 +0000
+++ b/src/buddy.c	Mon Oct 16 20:11:18 2000 +0000
@@ -291,7 +291,7 @@
 {
 	GList *mem;
 
-	plugin_event(event_signoff, gc, 0, 0);
+	plugin_event(event_signoff, gc, 0, 0, 0);
 	serv_close(gc);
 
 	if (connections) return;
@@ -982,7 +982,7 @@
 	char *error;
 
 	/* first we tell those who have requested it we're quitting */
-	plugin_event(event_quit, 0, 0, 0);
+	plugin_event(event_quit, 0, 0, 0, 0);
 
 	/* then we remove everyone in a mass suicide */
 	c = plugins;
@@ -1439,7 +1439,7 @@
 		/* this check should also depend on whether they left,
 		 * and signed on again before they got erased */
                 if (!GTK_WIDGET_VISIBLE(b->item) || b->present == 1) {
-			plugin_event(event_buddy_signon, b->name, 0, 0);
+			plugin_event(event_buddy_signon, b->name, 0, 0, 0);
 			
 			play_sound(BUDDY_ARRIVE);
 			b->present = 2;
@@ -1593,7 +1593,7 @@
 
 	} else {
 		if (GTK_WIDGET_VISIBLE(b->item)) {
-			plugin_event(event_buddy_signoff, b->name, 0, 0);
+			plugin_event(event_buddy_signoff, b->name, 0, 0, 0);
 			play_sound(BUDDY_LEAVE);
 			pm = gdk_pixmap_create_from_xpm_d(blist->window, &bm,
 				NULL, (gchar **)logout_icon_xpm);