summaryrefslogtreecommitdiff
path: root/gtk/gtk_schedule.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2006-11-27 15:35:18 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2006-11-27 15:35:18 +0000
commitba23e4b69341e5f3f2dbcd824663e75ebe2a581f (patch)
treed93a5298ee620a916237da4d740cede5034a80c1 /gtk/gtk_schedule.c
parent8e530e68ae718f8675e7dcd41528d20e54a0d1bb (diff)
downloadnetsurf-ba23e4b69341e5f3f2dbcd824663e75ebe2a581f.tar.gz
netsurf-ba23e4b69341e5f3f2dbcd824663e75ebe2a581f.tar.bz2
Update project URL.
svn path=/trunk/netsurf/; revision=3073
Diffstat (limited to 'gtk/gtk_schedule.c')
-rw-r--r--gtk/gtk_schedule.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtk_schedule.c b/gtk/gtk_schedule.c
index 071b6b95f..73568fa93 100644
--- a/gtk/gtk_schedule.c
+++ b/gtk/gtk_schedule.c
@@ -1,5 +1,5 @@
/*
- * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * This file is part of NetSurf, http://netsurf-browser.org/
* Licensed under the GNU General Public License,
* http://www.opensource.org/licenses/gpl-license
* Copyright 2006 Daniel Silverstone <dsilvers@digital-scurf.org>
@@ -32,7 +32,7 @@ static gboolean ns_generic_gtk_callback(gpointer data)
return FALSE;
}
-void schedule_remove(void (*callback)(void *p), void *p)
+void schedule_remove(void (*callback)(void *p), void *p)
{
_nsgtkcallback *cb;
GList *l;
@@ -47,7 +47,7 @@ void schedule_remove(void (*callback)(void *p), void *p)
}
}
-void schedule(int t, void (*callback)(void *p), void *p)
+void schedule(int t, void (*callback)(void *p), void *p)
{
_nsgtkcallback *cb = (_nsgtkcallback*)malloc(sizeof(_nsgtkcallback));
schedule_remove(callback, p);
@@ -58,7 +58,7 @@ void schedule(int t, void (*callback)(void *p), void *p)
g_timeout_add(t * 10, ns_generic_gtk_callback, cb);
}
-void schedule_run(void)
+void schedule_run(void)
{
/* Nothing to do, the running is done via the gtk mainloop of joy */
}