Remove unnecessary GLib version checks
We now depend on a newer version of GLib than those checks tested for.
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user