aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/pcs/job.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@helixcode.com>2000-01-25 11:17:54 +0800
committerArturo Espinosa <unammx@src.gnome.org>2000-01-25 11:17:54 +0800
commit32ce476a23e9f2757e9cc539532f38f4ab21837c (patch)
tree4a9aeebfe355427fe035d27441b02bbc7be0bc4d /calendar/pcs/job.c
parent50e5c22f0f5c4083ceee623b5bc02a6a7fc4f18c (diff)
downloadgsoc2013-evolution-32ce476a23e9f2757e9cc539532f38f4ab21837c.tar
gsoc2013-evolution-32ce476a23e9f2757e9cc539532f38f4ab21837c.tar.gz
gsoc2013-evolution-32ce476a23e9f2757e9cc539532f38f4ab21837c.tar.bz2
gsoc2013-evolution-32ce476a23e9f2757e9cc539532f38f4ab21837c.tar.lz
gsoc2013-evolution-32ce476a23e9f2757e9cc539532f38f4ab21837c.tar.xz
gsoc2013-evolution-32ce476a23e9f2757e9cc539532f38f4ab21837c.tar.zst
gsoc2013-evolution-32ce476a23e9f2757e9cc539532f38f4ab21837c.zip
Added the gnome-pilot and capplet checks; they will likely be reworked for
2000-01-24 Federico Mena Quintero <federico@helixcode.com> * configure.in: Added the gnome-pilot and capplet checks; they will likely be reworked for the Evolution framework, but for now the calendar/ directory needs them. * configure.in: Added checks for gnome-vfs. 2000-01-24 Federico Mena Quintero <federico@helixcode.com> * tlacuache.c: New main module for the Tlacuache personal calendar server. * tlacuache.gnorba: New gnorba file for Tlacuache, the GNOME personal calendar server. * Makefile.am: Added the stuff necessary to build Tlacuache. * cal.c (Cal_get_uri): Convert the URI to a string before returning it. * cal-factory.c (CalFactory_create): Doh, this function is void. * job.c (job_add): Use g_idle_add(), not gtk_idle_add(). svn path=/trunk/; revision=1623
Diffstat (limited to 'calendar/pcs/job.c')
-rw-r--r--calendar/pcs/job.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/pcs/job.c b/calendar/pcs/job.c
index deb62136f1..d97df6d883 100644
--- a/calendar/pcs/job.c
+++ b/calendar/pcs/job.c
@@ -39,7 +39,7 @@ static guint jobs_idle_id;
/* Runs a job and dequeues it */
-static gint
+static gboolean
run_job (gpointer data)
{
Job *job;
@@ -88,7 +88,7 @@ job_add (JobFunc func, gpointer data)
jobs_head = g_slist_append (NULL, job);
jobs_tail = jobs_head;
- jobs_idle_id = gtk_idle_add (run_job, NULL);
+ jobs_idle_id = g_idle_add (run_job, NULL);
} else {
g_assert (jobs_tail != NULL);
g_assert (jobs_idle_id != 0);