diff 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
line wrap: on
line diff
--- a/src/blist.c	Mon Dec 29 05:14:16 2003 +0000
+++ b/src/blist.c	Mon Dec 29 06:13:36 2003 +0000
@@ -302,6 +302,16 @@
 	}
 }
 
+void  gaim_blist_update_buddy_signon (GaimBuddy *buddy, time_t signon)
+{
+	GaimBlistUiOps *ops = gaimbuddylist->ui_ops;
+	if(buddy->signon == signon)
+		return;
+
+	buddy->signon = signon;
+	if (ops)
+		ops->update(gaimbuddylist,(GaimBlistNode*)buddy);
+}
 
 void  gaim_blist_update_buddy_idle (GaimBuddy *buddy, int idle)
 {