# HG changeset patch # User Mark Doliner # Date 1093145327 0 # Node ID aaef48dc13a91886f978581681fdd3873f5a59c5 # Parent 81a9ddc3f415727750daa1e2b054e56ef9f9454d [gaim-migrate @ 10685] A patch from Dave West that fixes the following crash: 1. Open the accounts editor and single-click on an account 2. Click the delete button twice 3. Select "Delete" on both "Do you want to delete this account?" windows committer: Tailor Script diff -r 81a9ddc3f415 -r aaef48dc13a9 src/gtkaccount.c --- a/src/gtkaccount.c Sun Aug 22 03:23:31 2004 +0000 +++ b/src/gtkaccount.c Sun Aug 22 03:28:47 2004 +0000 @@ -2004,7 +2004,8 @@ buf = g_strdup_printf(_("Are you sure you want to delete %s?"), gaim_account_get_username(account)); - gaim_request_action(NULL, NULL, buf, NULL, 1, account, 2, + gaim_request_close_with_handle(account); + gaim_request_action(account, NULL, buf, NULL, 1, account, 2, _("Delete"), delete_account_cb, _("Cancel"), NULL); g_free(buf);