diff finch/gntconn.c @ 17091: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 08db93bbd798
children 8c3a3407af58
line wrap: on
line diff
--- a/finch/gntconn.c	Sat May 19 06:34:27 2007 +0000
+++ b/finch/gntconn.c	Sat May 19 06:54:15 2007 +0000
@@ -56,11 +56,17 @@
 
 static PurpleConnectionUiOps ops = 
 {
-	.connect_progress = NULL,
-	.connected = NULL,
-	.disconnected = NULL,
-	.notice = NULL,
-	.report_disconnect = finch_connection_report_disconnect
+	NULL, /* connect_progress */
+	NULL, /* connected */
+	NULL, /* disconnected */
+	NULL, /* notice */
+	finch_connection_report_disconnect,
+	NULL, /* network_connected */
+	NULL, /* network_disconnected */
+	NULL,
+	NULL,
+	NULL,
+	NULL
 };
 
 PurpleConnectionUiOps *finch_connections_get_ui_ops()