aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2009-09-15 18:12:55 +0800
committerCosimo Cecchi <cosimoc@gnome.org>2009-09-15 19:37:12 +0800
commitfaa44db1d31171e757d52338b6f549476a2917c5 (patch)
treef10f1afa0d7c7dab0d87bde7f2a54cdde922ab24 /libempathy
parent36fcf8ff5514a2e2d941a0f9544098db25b3d8d4 (diff)
downloadgsoc2013-empathy-faa44db1d31171e757d52338b6f549476a2917c5.tar
gsoc2013-empathy-faa44db1d31171e757d52338b6f549476a2917c5.tar.gz
gsoc2013-empathy-faa44db1d31171e757d52338b6f549476a2917c5.tar.bz2
gsoc2013-empathy-faa44db1d31171e757d52338b6f549476a2917c5.tar.lz
gsoc2013-empathy-faa44db1d31171e757d52338b6f549476a2917c5.tar.xz
gsoc2013-empathy-faa44db1d31171e757d52338b6f549476a2917c5.tar.zst
gsoc2013-empathy-faa44db1d31171e757d52338b6f549476a2917c5.zip
Fix long lines.
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/empathy-dispatcher.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/libempathy/empathy-dispatcher.c b/libempathy/empathy-dispatcher.c
index 528320295..18647e4e2 100644
--- a/libempathy/empathy-dispatcher.c
+++ b/libempathy/empathy-dispatcher.c
@@ -1095,10 +1095,12 @@ empathy_dispatcher_init (EmpathyDispatcher *dispatcher)
priv->channels = NULL;
- connections = empathy_account_manager_dup_connections (priv->account_manager);
+ connections = empathy_account_manager_dup_connections (
+ priv->account_manager);
for (l = connections; l; l = l->next)
{
- dispatcher_new_connection_cb (priv->account_manager, l->data, dispatcher);
+ dispatcher_new_connection_cb (priv->account_manager, l->data,
+ dispatcher);
g_object_unref (l->data);
}
g_list_free (connections);
@@ -1158,10 +1160,10 @@ dispatcher_request_failed (EmpathyDispatcher *dispatcher,
static void
dispatcher_connection_new_requested_channel (EmpathyDispatcher *dispatcher,
- DispatcherRequestData *request_data,
- const gchar *object_path,
- GHashTable *properties,
- const GError *error)
+ DispatcherRequestData *request_data,
+ const gchar *object_path,
+ GHashTable *properties,
+ const GError *error)
{
EmpathyDispatcherPriv *priv = GET_PRIV (dispatcher);
EmpathyDispatchOperation *operation = NULL;