comparison finch/gntpounce.c @ 21560:665e04562de0

This merge has the effect of reverting the hinting code from trunk.
author Richard Laager <rlaager@wiktel.com>
date Sat, 17 Nov 2007 00:12:30 +0000
parents 47118f6062e9 fcb848b2d669
children 16ff37f64e29 60f5abc6cf0c
comparison
equal deleted inserted replaced
21544:9b4d1af17ced 21560:665e04562de0
671 671
672 account = purple_pounce_get_pouncer(pounce); 672 account = purple_pounce_get_pouncer(pounce);
673 pouncer = purple_account_get_username(account); 673 pouncer = purple_account_get_username(account);
674 pouncee = purple_pounce_get_pouncee(pounce); 674 pouncee = purple_pounce_get_pouncee(pounce);
675 buf = g_strdup_printf(_("Are you sure you want to delete the pounce on %s for %s?"), pouncee, pouncer); 675 buf = g_strdup_printf(_("Are you sure you want to delete the pounce on %s for %s?"), pouncee, pouncer);
676 purple_request_action_with_hint(pounce, NULL, buf, NULL, 0, 676 purple_request_action(pounce, NULL, buf, NULL, 0,
677 account, pouncee, NULL, 677 account, pouncee, NULL,
678 PURPLE_REQUEST_UI_HINT_POUNCEMGR, pounce, 2, 678 pounce, 2,
679 _("Delete"), pounces_manager_delete_confirm_cb, 679 _("Delete"), pounces_manager_delete_confirm_cb,
680 _("Cancel"), NULL); 680 _("Cancel"), NULL);
681 g_free(buf); 681 g_free(buf);
682 } 682 }
683 683