Mercurial > pidgin.yaz
comparison src/dialogs.c @ 6036:547ba881bc7e
[gaim-migrate @ 6486]
Fix the --login=[NAME] command line argument.
Fix the password prompt when signing on an account with no password set. I
made some similar changes that probably fix problems with the filectl plugin,
using gaim-remote to sign on an account, and signing on an account via perl
script. (The change is calling gaim_account_connect() instead of
serv_login().)
Fix a silly compiler warning.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sat, 05 Jul 2003 22:24:57 +0000 |
parents | 5a0060191a77 |
children | ac0dd4dd9465 |
comparison
equal
deleted
inserted
replaced
6035:8c44020a958e | 6036:547ba881bc7e |
---|---|
455 g_free(text); | 455 g_free(text); |
456 } | 456 } |
457 | 457 |
458 void show_confirm_del_chat(struct chat *chat) | 458 void show_confirm_del_chat(struct chat *chat) |
459 { | 459 { |
460 const char *name = gaim_chat_get_display_name(chat); | 460 char *name = gaim_chat_get_display_name(chat); |
461 char *text = g_strdup_printf(_("You are about to remove the chat %s from your buddy list. Do you want to continue?"), name); | 461 char *text = g_strdup_printf(_("You are about to remove the chat %s from your buddy list. Do you want to continue?"), name); |
462 | 462 |
463 gaim_request_action(NULL, NULL, _("Remove Chat"), text, -1, chat, 2, | 463 gaim_request_action(NULL, NULL, _("Remove Chat"), text, -1, chat, 2, |
464 _("Remove Chat"), G_CALLBACK(do_remove_chat), | 464 _("Remove Chat"), G_CALLBACK(do_remove_chat), |
465 _("Cancel"), NULL); | 465 _("Cancel"), NULL); |