Fix a warning introduced with the request api changes.

Thu, 26 Apr 2007 23:48:32 +0000

author
Gary Kramlich <grim@reaperworld.com>
date
Thu, 26 Apr 2007 23:48:32 +0000
changeset 16509
efe3b26f7eaf
parent 16508
e60735811f66
child 16510
92a414e80b44

Fix a warning introduced with the request api changes.

Hey weren't we in an API freeze?

finch/gntaccount.c file | annotate | diff | comparison | revisions
--- 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);
 }
 

mercurial