diff src/plugins.c @ 2131:acc11216ec5d

[gaim-migrate @ 2141] changing some gtk_timeout stuff to g_timeout (since it's likely that these will be used in core rather than gtk-ui). also fixed a small buddy pounce bug. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Mon, 06 Aug 2001 23:38:48 +0000
parents af59d854de29
children 66a84ff0445a
line wrap: on
line diff
--- a/src/plugins.c	Mon Aug 06 21:47:17 2001 +0000
+++ b/src/plugins.c	Mon Aug 06 23:38:48 2001 +0000
@@ -477,7 +477,7 @@
 void gaim_plugin_unload(GModule *handle)
 {
 	unload_for_real(handle);
-	gtk_timeout_add(5000, (GtkFunction)unload_timeout, handle);
+	g_timeout_add(5000, unload_timeout, handle);
 }
 
 static void plugin_reload_cb(GtkWidget *w, gpointer data)