Mercurial > pidgin.yaz
changeset 18013:58e82c3b697e
It's GLIB_CHECK_VERSION, not GLIB_VERSION_CHECK.
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Sun, 20 May 2007 14:46:04 +0000 |
parents | c6803512f30e |
children | b328eb5ccde4 |
files | finch/finch.c libpurple/eventloop.h libpurple/example/nullclient.c pidgin/gtkeventloop.c |
diffstat | 4 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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.