diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-03-06 01:33:49 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:41 +0800 |
commit | 7aacf983b32ecac26bc9707697da622b3ef164a3 (patch) | |
tree | 754e32b12d21674efa6d55c7a1c8727477197dd4 /modules/connman | |
parent | bca1a2c5ea655a8cfacedadf8a9a6c6b62d2b0ab (diff) | |
download | gsoc2013-evolution-7aacf983b32ecac26bc9707697da622b3ef164a3.tar gsoc2013-evolution-7aacf983b32ecac26bc9707697da622b3ef164a3.tar.gz gsoc2013-evolution-7aacf983b32ecac26bc9707697da622b3ef164a3.tar.bz2 gsoc2013-evolution-7aacf983b32ecac26bc9707697da622b3ef164a3.tar.lz gsoc2013-evolution-7aacf983b32ecac26bc9707697da622b3ef164a3.tar.xz gsoc2013-evolution-7aacf983b32ecac26bc9707697da622b3ef164a3.tar.zst gsoc2013-evolution-7aacf983b32ecac26bc9707697da622b3ef164a3.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'modules/connman')
-rw-r--r-- | modules/connman/evolution-connman.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/modules/connman/evolution-connman.c b/modules/connman/evolution-connman.c index 30155c9ed3..184ad23fdd 100644 --- a/modules/connman/evolution-connman.c +++ b/modules/connman/evolution-connman.c @@ -60,7 +60,10 @@ extension_set_state (EConnMan *extension, const gchar *state) } static void -cm_connection_closed_cb (GDBusConnection *pconnection, gboolean remote_peer_vanished, GError *error, gpointer user_data) +cm_connection_closed_cb (GDBusConnection *pconnection, + gboolean remote_peer_vanished, + GError *error, + gpointer user_data) { EConnMan *extension = user_data; @@ -105,7 +108,8 @@ connman_check_initial_state (EConnMan *extension) /* XXX Assuming this should be safe to call synchronously. */ response = g_dbus_connection_send_message_with_reply_sync ( - extension->connection, message, G_DBUS_SEND_MESSAGE_FLAGS_NONE, 100, NULL, NULL, &error); + extension->connection, message, + G_DBUS_SEND_MESSAGE_FLAGS_NONE, 100, NULL, NULL, &error); if (response != NULL) { gchar *state = NULL; @@ -162,7 +166,9 @@ network_manager_connect (EConnMan *extension) goto fail; } - g_signal_connect (extension->connection, "closed", G_CALLBACK (cm_connection_closed_cb), extension); + g_signal_connect ( + extension->connection, "closed", + G_CALLBACK (cm_connection_closed_cb), extension); connman_check_initial_state (extension); |