From 5a403f78cafba0622c929ccad8f664d929311629 Mon Sep 17 00:00:00 2001 From: Richard Laager Date: Sun, 20 May 2007 13:56:28 +0000 Subject: Wire everything up and document it. --- libpurple/eventloop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libpurple/eventloop.c') diff --git a/libpurple/eventloop.c b/libpurple/eventloop.c index c850a7d27f..29c4f32aac 100644 --- a/libpurple/eventloop.c +++ b/libpurple/eventloop.c @@ -36,9 +36,9 @@ purple_timeout_add(guint interval, GSourceFunc function, gpointer data) } 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); -- cgit v1.2.1