# HG changeset patch # User Gabriel Schulhof # Date 1187299845 0 # Node ID 617aa1bd7ff0a667b1cd7682e68aa8261f58e0c8 # Parent ab31c7482b4005d5e9950c3907b8e80f5046f954 Added hints to gtkprivacy.c diff -r ab31c7482b40 -r 617aa1bd7ff0 pidgin/gtkprivacy.c --- a/pidgin/gtkprivacy.c Thu Aug 16 21:28:07 2007 +0000 +++ b/pidgin/gtkprivacy.c Thu Aug 16 21:30:45 2007 +0000 @@ -561,7 +561,7 @@ _("_Permit"), G_CALLBACK(add_permit_block_cb), _("Cancel"), G_CALLBACK(destroy_request_data), account, name, NULL, - data); + "pidgin-privacy", data); } else { char *primary = g_strdup_printf(_("Allow %s to contact you?"), name); @@ -573,7 +573,7 @@ purple_request_action(account, _("Permit User"), primary, secondary, 0, account, name, NULL, - data, 2, + "pidgin-privacy", data, 2, _("_Permit"), G_CALLBACK(confirm_permit_block_cb), _("Cancel"), G_CALLBACK(destroy_request_data)); @@ -602,7 +602,7 @@ _("_Block"), G_CALLBACK(add_permit_block_cb), _("Cancel"), G_CALLBACK(destroy_request_data), account, name, NULL, - data); + "pidgin-privacy", data); } else { char *primary = g_strdup_printf(_("Block %s?"), name); @@ -612,7 +612,7 @@ purple_request_action(account, _("Block User"), primary, secondary, 0, account, name, NULL, - data, 2, + "pidgin-privacy", data, 2, _("_Block"), G_CALLBACK(confirm_permit_block_cb), _("Cancel"), G_CALLBACK(destroy_request_data));