# HG changeset patch # User Gary Kramlich # Date 1177631312 0 # Node ID 4b6d81d26b568cf619c09776c6bea6cca98c8870 # Parent 5deee71dc64f2b0239c2cc4f24425c66dae66c71 Fix a warning introduced with the request api changes. Hey weren't we in an API freeze? diff -r 5deee71dc64f -r 4b6d81d26b56 finch/gntaccount.c --- 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); }