diff options
author | Elliott Sales de Andrade <qulogic@pidgin.im> | 2020-05-17 22:46:04 -0400 |
---|---|---|
committer | Elliott Sales de Andrade <qulogic@pidgin.im> | 2020-05-17 22:46:04 -0400 |
commit | 9a05ca0217e4d1f246f7800ed5d7101cf851050f (patch) | |
tree | 36444f69726125c76293a95af7e401ebd299cb94 /pidgin/plugins | |
parent | e144ce8c14bd00311ccb81f2992b1da0cfbc5fa2 (diff) | |
download | pidgin-9a05ca0217e4d1f246f7800ed5d7101cf851050f.tar.gz |
Use g_timeout_add_seconds some more.
Diffstat (limited to 'pidgin/plugins')
-rw-r--r-- | pidgin/plugins/ticker/ticker.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |