It's GLIB_CHECK_VERSION, not GLIB_VERSION_CHECK.

Sun, 20 May 2007 14:46:04 +0000

author
Richard Laager <rlaager@pidgin.im>
date
Sun, 20 May 2007 14:46:04 +0000
changeset 18075
1e4bb0043a98
parent 18074
60b27c5603f6
child 18076
4e0737bd1dd3

It's GLIB_CHECK_VERSION, not GLIB_VERSION_CHECK.

finch/finch.c file | annotate | diff | comparison | revisions
libpurple/eventloop.h file | annotate | diff | comparison | revisions
libpurple/example/nullclient.c file | annotate | diff | comparison | revisions
pidgin/gtkeventloop.c file | annotate | diff | comparison | revisions
--- a/finch/finch.c	Sun May 20 14:45:52 2007 +0000
+++ b/finch/finch.c	Sun May 20 14:46:04 2007 +0000
@@ -156,7 +156,7 @@
 	gnt_input_add,
 	g_source_remove,
 	NULL, /* input_get_error */
-#if GLIB_VERSION_CHECK(2,14,0)
+#if GLIB_CHECK_VERSION(2,14,0)
 	g_timeout_add_seconds,
 #else
 	NULL,
--- a/libpurple/eventloop.h	Sun May 20 14:45:52 2007 +0000
+++ b/libpurple/eventloop.h	Sun May 20 14:46:04 2007 +0000
@@ -138,7 +138,7 @@
  * @return A handle to the timer which can be passed to 
  *         purple_timeout_remove to remove the timer.
  */
-guint purple_timeout_add(guint interval, GSourceFunc function, gpointer data);
+guint purple_timeout_add_seconds(guint interval, GSourceFunc function, gpointer data);
 
 /**
  * Removes a timeout handler.
--- a/libpurple/example/nullclient.c	Sun May 20 14:45:52 2007 +0000
+++ b/libpurple/example/nullclient.c	Sun May 20 14:46:04 2007 +0000
@@ -108,7 +108,7 @@
 	glib_input_add,
 	g_source_remove,
 	NULL,
-#if GLIB_VERSION_CHECK(2,14,0)
+#if GLIB_CHECK_VERSION(2,14,0)
 	g_timeout_add_seconds,
 #else
 	NULL,
--- a/pidgin/gtkeventloop.c	Sun May 20 14:45:52 2007 +0000
+++ b/pidgin/gtkeventloop.c	Sun May 20 14:46:04 2007 +0000
@@ -120,7 +120,7 @@
 	pidgin_input_add,
 	g_source_remove,
 	NULL, /* input_get_error */
-#if GLIB_VERSION_CHECK(2,14,0)
+#if GLIB_CHECK_VERSION(2,14,0)
 	g_timeout_add_seconds,
 #else
 	NULL,

mercurial