Update of /cvsroot/gaim/gaim/src/protocols/yahoo
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14198/src/protocols/yahoo
Modified Files:
yahoo.c yahoo.h yahoo_profile.c
Log Message:
Passing the 'full' condition to the prpls when building tooltips.
Index: yahoo.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/protocols/yahoo/yahoo.c,v
retrieving revision 1.385
retrieving revision 1.386
diff -u -d -p -r1.385 -r1.386
--- yahoo.c 17 Jan 2006 23:22:19 -0000 1.385
+++ yahoo.c 19 Jan 2006 07:01:58 -0000 1.386
@@ -2778,7 +2778,7 @@ static char *yahoo_status_text(GaimBuddy
}
}
-char *yahoo_tooltip_text(GaimBuddy *b)
+char *yahoo_tooltip_text(GaimBuddy *b, gboolean full)
{
YahooFriend *f;
char *escaped, *status = NULL, *presence = NULL;
Index: yahoo.h
===================================================================
RCS file: /cvsroot/gaim/gaim/src/protocols/yahoo/yahoo.h,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -p -r1.46 -r1.47
--- yahoo.h 9 Jan 2006 22:28:17 -0000 1.46
+++ yahoo.h 19 Jan 2006 07:01:58 -0000 1.47
@@ -177,7 +177,7 @@ char *yahoo_string_encode(GaimConnection
char *yahoo_string_decode(GaimConnection *gc, const char *str, gboolean utf8);
/* previously-static functions, now needed for yahoo_profile.c */
-char *yahoo_tooltip_text(GaimBuddy *b);
+char *yahoo_tooltip_text(GaimBuddy *b, gboolean full);
/* yahoo_profile.c */
void yahoo_get_info(GaimConnection *gc, const char *name);
Index: yahoo_profile.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/protocols/yahoo/yahoo_profile.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -p -r1.23 -r1.24
--- yahoo_profile.c 14 Jan 2006 17:43:32 -0000 1.23
+++ yahoo_profile.c 19 Jan 2006 07:01:58 -0000 1.24
@@ -668,7 +668,7 @@ static char *yahoo_tooltip_info_text(Yah
info_data->name);
if (b) {
- char *statustext = yahoo_tooltip_text(b);
+ char *statustext = yahoo_tooltip_text(b, TRUE);
if(b->alias && b->alias[0]) {
char *aliastext = g_markup_escape_text(b->alias, -1);
g_string_append_printf(s, _("<b>Alias:</b> %s<br>"), aliastext);
|