Mercurial > pidgin
changeset 16462:4b6d81d26b56
Fix a warning introduced with the request api changes.
Hey weren't we in an API freeze?
author | Gary Kramlich <grim@reaperworld.com> |
---|---|
date | Thu, 26 Apr 2007 23:48:32 +0000 |
parents | 5deee71dc64f |
children | 1a639d73682a |
files | finch/gntaccount.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/finch/gntaccount.c Thu Apr 26 22:40:59 2007 +0000 +++ b/finch/gntaccount.c Thu Apr 26 23:48:32 2007 +0000 @@ -611,10 +611,10 @@ prompt = g_strdup_printf(_("Are you sure you want to delete %s?"), purple_account_get_username(account)); - purple_request_action(account, _("Delete Account"), prompt, NULL, 0, account, 2, - _("Delete"), really_delete_account, _("Cancel"), - account, NULL, NULL, - NULL); + purple_request_action(account, _("Delete Account"), prompt, NULL, 0, + account, NULL, NULL, account, 2, + _("Delete"), really_delete_account, + _("Cancel"), NULL); g_free(prompt); }