comparison src/blist.c @ 7950:7b8407d8c546

[gaim-migrate @ 8624] Move the "Logged In:" tooltip thingy to the core. Much thanks to Evan Schoenberg of Adium. This shouldn't affect anything for oscar. For jabber some servers/accounts might start showing a "Logged In:" line in people's tooltips. I'm really not sure when it will or won't. I bet faceprint knows! committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 29 Dec 2003 06:13:36 +0000
parents f9df510460d7
children 1b8261f374ea
comparison
equal deleted inserted replaced
7949:b356e2a9d7fc 7950:7b8407d8c546
300 if (ops) 300 if (ops)
301 ops->update(gaimbuddylist, (GaimBlistNode*)buddy); 301 ops->update(gaimbuddylist, (GaimBlistNode*)buddy);
302 } 302 }
303 } 303 }
304 304
305 void gaim_blist_update_buddy_signon (GaimBuddy *buddy, time_t signon)
306 {
307 GaimBlistUiOps *ops = gaimbuddylist->ui_ops;
308 if(buddy->signon == signon)
309 return;
310
311 buddy->signon = signon;
312 if (ops)
313 ops->update(gaimbuddylist,(GaimBlistNode*)buddy);
314 }
305 315
306 void gaim_blist_update_buddy_idle (GaimBuddy *buddy, int idle) 316 void gaim_blist_update_buddy_idle (GaimBuddy *buddy, int idle)
307 { 317 {
308 GaimBlistUiOps *ops = gaimbuddylist->ui_ops; 318 GaimBlistUiOps *ops = gaimbuddylist->ui_ops;
309 if(buddy->idle == idle) 319 if(buddy->idle == idle)