summaryrefslogtreecommitdiffstats
path: root/eglib
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2007-01-20 14:53:59 +0000
committerJohan Hedberg <johan.hedberg@nokia.com>2007-01-20 14:53:59 +0000
commit89edbea0fde48f3e91b634589299f5c0f13e1543 (patch)
tree8dec6f044bc9ea19b3fbfefa1a8800d18e7a0fb6 /eglib
parent6906a81304d989f0039896903a2496e63518898c (diff)
Get rid of g_idle_add
Diffstat (limited to 'eglib')
-rw-r--r--eglib/gmain.c6
-rw-r--r--eglib/gmain.h1
2 files changed, 0 insertions, 7 deletions
diff --git a/eglib/gmain.c b/eglib/gmain.c
index ea3adebd..a5e46a3a 100644
--- a/eglib/gmain.c
+++ b/eglib/gmain.c
@@ -544,12 +544,6 @@ guint g_timeout_add(guint interval, GSourceFunc function, gpointer data)
return t->id;
}
-guint g_idle_add(GSourceFunc func, gpointer user_data)
-{
- /* Not implemented */
- return 0;
-}
-
/* GError */
void g_error_free(GError *err)
{
diff --git a/eglib/gmain.h b/eglib/gmain.h
index 7080c687..0ad103d9 100644
--- a/eglib/gmain.h
+++ b/eglib/gmain.h
@@ -107,7 +107,6 @@ void g_main_loop_quit(GMainLoop *loop);
void g_main_loop_unref(GMainLoop *loop);
guint g_timeout_add(guint interval, GSourceFunc function, gpointer data);
gboolean g_source_remove(guint tag);
-guint g_idle_add(GSourceFunc func, gpointer user_data);
/* GError */