comparison src/protocols/irc/msgs.c @ 11533:c9b815aeddc1

[gaim-migrate @ 13782] Pushing more of the userinfo stuff to the UI. Also, fixed a notify API warning in the perl plugin. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 12 Sep 2005 20:04:37 +0000
parents bf763a1b2454
children bb98b2c09224
comparison
equal deleted inserted replaced
11532:57439a383f4f 11533:c9b815aeddc1
250 } 250 }
251 251
252 gc = gaim_account_get_connection(irc->account); 252 gc = gaim_account_get_connection(irc->account);
253 str = g_string_free(info, FALSE); 253 str = g_string_free(info, FALSE);
254 254
255 gaim_notify_userinfo(gc, irc->whois.nick, _("Buddy Information"), NULL, str, NULL, NULL); 255 gaim_notify_userinfo(gc, irc->whois.nick, str, NULL, NULL);
256 256
257 g_free(irc->whois.nick); 257 g_free(irc->whois.nick);
258 g_free(str); 258 g_free(str);
259 memset(&irc->whois, 0, sizeof(irc->whois)); 259 memset(&irc->whois, 0, sizeof(irc->whois));
260 } 260 }