diff finch/gntaccount.c @ 17104:46f2f86e08e4

Death to more futuristic struct initialization. This should be the last.
author Richard Laager <rlaager@wiktel.com>
date Sat, 19 May 2007 06:54:15 +0000
parents 4b6d81d26b56
children 8c3a3407af58 464840043c66
line wrap: on
line diff
--- a/finch/gntaccount.c	Sat May 19 06:34:27 2007 +0000
+++ b/finch/gntaccount.c	Sat May 19 06:54:15 2007 +0000
@@ -930,11 +930,15 @@
 
 static PurpleAccountUiOps ui_ops =
 {
-	.notify_added = notify_added,
-	.status_changed = NULL,
-	.request_add  = request_add,
-	.request_authorize = finch_request_authorize,
-	.close_account_request = finch_request_close
+	notify_added,
+	NULL,
+	request_add,
+	finch_request_authorize,
+	finch_request_close,
+	NULL,
+	NULL,
+	NULL,
+	NULL
 };
 
 PurpleAccountUiOps *finch_accounts_get_ui_ops()