From 9a05ca0217e4d1f246f7800ed5d7101cf851050f Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Sun, 17 May 2020 22:46:04 -0400 Subject: Use g_timeout_add_seconds some more. --- pidgin/plugins/ticker/ticker.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pidgin/plugins') diff --git a/pidgin/plugins/ticker/ticker.c b/pidgin/plugins/ticker/ticker.c index 80ea9b19aa..358b60a275 100644 --- a/pidgin/plugins/ticker/ticker.c +++ b/pidgin/plugins/ticker/ticker.c @@ -179,7 +179,7 @@ static void buddy_ticker_add_buddy(PurpleBuddy *b) { * Update the icon in a few seconds (after the open door icon has * changed). This is somewhat ugly. */ - td->timeout = g_timeout_add(11000, buddy_ticker_set_pixmap_cb, td); + td->timeout = g_timeout_add_seconds(11, buddy_ticker_set_pixmap_cb, td); } static void ticker_data_free(TickerData *td) { -- cgit v1.2.1