summaryrefslogtreecommitdiff
path: root/finch/gntconn.c
diff options
context:
space:
mode:
authorRichard Laager <rlaager@pidgin.im>2007-05-19 06:54:15 +0000
committerRichard Laager <rlaager@pidgin.im>2007-05-19 06:54:15 +0000
commit2f52261488d755e1cb6999b181d4dfb4b066b7c6 (patch)
treebf4421413b54fc8d10f9cdc2a3a228e51157d862 /finch/gntconn.c
parent3a79072abbe28067ae4f510687d5d1629c708a46 (diff)
downloadpidgin-2f52261488d755e1cb6999b181d4dfb4b066b7c6.tar.gz
Death to more futuristic struct initialization. This should be the last.
Diffstat (limited to 'finch/gntconn.c')
-rw-r--r--finch/gntconn.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/finch/gntconn.c b/finch/gntconn.c
index bb666a5922..afb43dff2d 100644
--- a/finch/gntconn.c
+++ b/finch/gntconn.c
@@ -56,11 +56,17 @@ finch_connection_report_disconnect(PurpleConnection *gc, const char *text)
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()