comparison src/gtkdialogs.c @ 9991:cc4b2125d05d

[gaim-migrate @ 10904] Some oscar status fixes/changes from Dave West and I, and other odds n' ends. It's dinner and Jeopardy! time, then Smallville and some bar or something with someone cool. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Wed, 08 Sep 2004 22:58:12 +0000
parents f4ff7d2b9b2c
children b28f9be379b3
comparison
equal deleted inserted replaced
9990:bd5517471d99 9991:cc4b2125d05d
544 gaim_gtk_log_show(GAIM_LOG_IM, username, account); 544 gaim_gtk_log_show(GAIM_LOG_IM, username, account);
545 545
546 g_free(username); 546 g_free(username);
547 } 547 }
548 548
549 /* XXX this needs to deal with logs of all types, not just IM logs */ 549 /*
550 * TODO - This needs to deal with logs of all types, not just IM logs.
551 */
550 void 552 void
551 gaim_gtkdialogs_log(void) 553 gaim_gtkdialogs_log(void)
552 { 554 {
553 GaimRequestFields *fields; 555 GaimRequestFields *fields;
554 GaimRequestFieldGroup *group; 556 GaimRequestFieldGroup *group;
595 g_free(w->who); 597 g_free(w->who);
596 g_free(w); 598 g_free(w);
597 } 599 }
598 600
599 /* 601 /*
600 * XXX - Make this use the request API, if possible. 602 * TODO - Make this use the request API, if possible.
601 */ 603 */
602 void 604 void
603 gaim_gtkdialogs_warn(GaimConnection *gc, const char *who) 605 gaim_gtkdialogs_warn(GaimConnection *gc, const char *who)
604 { 606 {
605 gchar *labeltext; 607 gchar *labeltext;
831 group = gaim_find_buddys_group(buddy); 833 group = gaim_find_buddys_group(buddy);
832 name = g_strdup(buddy->name); /* b->name is a crasher after remove_buddy */ 834 name = g_strdup(buddy->name); /* b->name is a crasher after remove_buddy */
833 account = buddy->account; 835 account = buddy->account;
834 836
835 gaim_debug_info("blist", "Removing '%s' from buddy list.\n", buddy->name); 837 gaim_debug_info("blist", "Removing '%s' from buddy list.\n", buddy->name);
836 /* XXX - Should remove from blist first... then call serv_remove_buddy()? */ 838 /* TODO - Should remove from blist first... then call serv_remove_buddy()? */
837 serv_remove_buddy(buddy->account->gc, buddy, group); 839 serv_remove_buddy(buddy->account->gc, buddy, group);
838 gaim_blist_remove_buddy(buddy); 840 gaim_blist_remove_buddy(buddy);
839 841
840 conv = gaim_find_conversation_with_account(name, account); 842 conv = gaim_find_conversation_with_account(name, account);
841 843