comparison finch/gntstatus.c @ 21235:fba1f6c3df0b

Converted string literal UI hints to #define-ed constants and fixed two cast-warnings in gtkblist.c
author Gabriel Schulhof <nix@go-nix.ca>
date Sun, 14 Oct 2007 18:07:19 +0000
parents cab348e39751
children 73c5f5bfeb39 a20ef7180680
comparison
equal deleted inserted replaced
21234:aabe638f56d9 21235:fba1f6c3df0b
138 ask = g_strdup_printf(_("Are you sure you want to delete \"%s\""), 138 ask = g_strdup_printf(_("Are you sure you want to delete \"%s\""),
139 purple_savedstatus_get_title(saved)); 139 purple_savedstatus_get_title(saved));
140 140
141 purple_request_action_with_hint(saved, _("Delete Status"), ask, NULL, 0, 141 purple_request_action_with_hint(saved, _("Delete Status"), ask, NULL, 0,
142 NULL, NULL, NULL, 142 NULL, NULL, NULL,
143 "statuses", saved, 2, 143 PURPLE_UI_REQUEST_HINT_STATUSMGR, saved, 2,
144 _("Delete"), really_delete_status, 144 _("Delete"), really_delete_status,
145 _("Cancel"), NULL); 145 _("Cancel"), NULL);
146 g_free(ask); 146 g_free(ask);
147 } 147 }
148 148