comparison src/protocols/oscar/oscar.c @ 4243:eae97ca4bbea

[gaim-migrate @ 4493] Guess what? Another SSI patch! This one fixes the automatic deletion of empty groups upon signin. The problem was that apparently WinICQ handles empty groups slightly differently than WinAIM. It's all good now. Uh, I fixed some comments. Oh, and moving a buddy that you've requested authorization from to a different group. I don't know if that used to give you the dialog that prompted if you wanted to send another auth request, but it shouldn't anymore (as long as you have sent 1 auth request). I also changed the button title for ICQ's receive contacts. I changed it from "Deny" to "Decline." Thanks to Nathan for pointing that out. I am to Time Warner as spiders are to the bottom of my shoe. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Wed, 08 Jan 2003 04:06:20 +0000
parents 9641bd9c79f5
children 091e9db94ebc
comparison
equal deleted inserted replaced
4242:cf19d8102b34 4243:eae97ca4bbea
2221 struct name_data *data = g_new(struct name_data, 1); 2221 struct name_data *data = g_new(struct name_data, 1);
2222 gchar *message = g_strdup_printf(_("ICQ user %lu has sent you a contact: %s (%s)"), args->uin, text[i*2+2], text[i*2+1]); 2222 gchar *message = g_strdup_printf(_("ICQ user %lu has sent you a contact: %s (%s)"), args->uin, text[i*2+2], text[i*2+1]);
2223 data->gc = gc; 2223 data->gc = gc;
2224 data->name = g_strdup(text[i*2+2]); 2224 data->name = g_strdup(text[i*2+2]);
2225 data->nick = g_strdup(text[i*2+1]); 2225 data->nick = g_strdup(text[i*2+1]);
2226 do_ask_dialog(message, _("Do you want to add this contact to your Buddy List?"), data, _("Add"), gaim_icq_contactadd, _("Deny"), gaim_free_name_data); 2226 do_ask_dialog(message, _("Do you want to add this contact to your Buddy List?"), data, _("Add"), gaim_icq_contactadd, _("Decline"), gaim_free_name_data);
2227 g_free(message); 2227 g_free(message);
2228 } 2228 }
2229 g_strfreev(text); 2229 g_strfreev(text);
2230 } 2230 }
2231 } break; 2231 } break;