| 660 pouncer = purple_account_get_username(account); |
660 pouncer = purple_account_get_username(account); |
| 661 pouncee = purple_pounce_get_pouncee(pounce); |
661 pouncee = purple_pounce_get_pouncee(pounce); |
| 662 buf = g_strdup_printf(_("Are you sure you want to delete the pounce on %s for %s?"), pouncee, pouncer); |
662 buf = g_strdup_printf(_("Are you sure you want to delete the pounce on %s for %s?"), pouncee, pouncer); |
| 663 purple_request_action_with_hint(pounce, NULL, buf, NULL, 0, |
663 purple_request_action_with_hint(pounce, NULL, buf, NULL, 0, |
| 664 account, pouncee, NULL, |
664 account, pouncee, NULL, |
| 665 PURPLE_UI_REQUEST_HINT_POUNCEMGR, pounce, 2, |
665 "pounces", pounce, 2, |
| 666 _("Delete"), pounces_manager_delete_confirm_cb, |
666 _("Delete"), pounces_manager_delete_confirm_cb, |
| 667 _("Cancel"), NULL); |
667 _("Cancel"), NULL); |
| 668 g_free(buf); |
668 g_free(buf); |
| 669 } |
669 } |
| 670 |
670 |