Remove unnecessary GLib version checks

We now depend on a newer version of GLib than those checks tested for.
This commit is contained in:
Emmanuele Bassi
2010-10-08 15:47:00 +01:00
parent 7dd09e2186
commit 8429aa8d75
11 changed files with 0 additions and 51 deletions

View File

@ -103,10 +103,7 @@ clutter_frame_source_add_full (gint priority,
if (priority != G_PRIORITY_DEFAULT)
g_source_set_priority (source, priority);
#if GLIB_CHECK_VERSION (2, 25, 8)
g_source_set_name (source, "Clutter frame timeout");
#endif
g_source_set_callback (source, func, data, notify);
ret = g_source_attach (source, NULL);