diff libpurple/eventloop.c @ 18008:f22986db6e70

Wire everything up and document it.
author Richard Laager <rlaager@wiktel.com>
date Sun, 20 May 2007 13:56:28 +0000
parents f2d8658b3a86
children 57d350900136
line wrap: on
line diff
--- a/libpurple/eventloop.c	Sun May 20 13:48:45 2007 +0000
+++ b/libpurple/eventloop.c	Sun May 20 13:56:28 2007 +0000
@@ -36,9 +36,9 @@
 }
 
 guint
-gaim_timeout_add_seconds(guint interval, GSourceFunc function, gpointer data)
+purple_timeout_add_seconds(guint interval, GSourceFunc function, gpointer data)
 {
-	GaimEventLoopUiOps *ops = gaim_eventloop_get_ui_ops();
+	PurpleEventLoopUiOps *ops = purple_eventloop_get_ui_ops();
 
 	if (ops->timeout_add_seconds)
 		return ops->timeout_add_seconds(interval, function, data);