From: Eric W. <war...@us...> - 2001-10-23 04:54:48
|
Update of /cvsroot/gaim/gaim/src/protocols/yahoo In directory usw-pr-cvs1:/tmp/cvs-serv21652/src/protocols/yahoo Modified Files: yay.c Log Message: add Index: yay.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/yahoo/yay.c,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- yay.c 2001/10/18 20:56:59 1.20 +++ yay.c 2001/10/23 04:54:45 1.21 @@ -174,7 +174,6 @@ char *id; char *who; char *msg; - char buf[2048]; va_start(ap, sess); id = va_arg(ap, char *); @@ -182,9 +181,7 @@ msg = va_arg(ap, char *); va_end(ap); - g_snprintf(buf, sizeof(buf), _("%s has made %s their buddy%s%s"), who, id, - msg ? ": " : "", msg ? msg : ""); - do_error_dialog(buf, _("Gaim - Buddy")); + show_got_added(sess->user_data, id, who, NULL, msg); return 1; } |