[Telepathy-commits] [telepathy-gabble/master] olpc-view: wrap big lines
Guillaume Desmottes
guillaume.desmottes at collabora.co.uk
Fri Sep 26 10:02:44 PDT 2008
20080723154805-7fe3f-ec139b19cfdf8051f5edade011d76fcc9400af85.gz
---
src/olpc-view.c | 14 ++++++++------
1 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/src/olpc-view.c b/src/olpc-view.c
index 85b56d9..8a7b218 100644
--- a/src/olpc-view.c
+++ b/src/olpc-view.c
@@ -96,8 +96,8 @@ gabble_olpc_view_init (GabbleOlpcView *self)
self->priv = priv;
- priv->buddy_properties = g_hash_table_new_full (g_direct_hash, g_direct_equal,
- NULL, (GDestroyNotify) g_hash_table_unref);
+ priv->buddy_properties = g_hash_table_new_full (g_direct_hash,
+ g_direct_equal, NULL, (GDestroyNotify) g_hash_table_unref);
priv->buddy_rooms = g_hash_table_new_full (g_direct_hash, g_direct_equal,
NULL, (GDestroyNotify) tp_handle_set_destroy);
@@ -235,8 +235,8 @@ gabble_olpc_view_constructor (GType type,
TP_HANDLE_TYPE_CONTACT);
priv->buddies = tp_handle_set_new (contact_handles);
- priv->activities = g_hash_table_new_full (g_direct_hash, g_direct_equal, NULL,
- g_object_unref );
+ priv->activities = g_hash_table_new_full (g_direct_hash, g_direct_equal,
+ NULL, g_object_unref );
return obj;
}
@@ -606,7 +606,8 @@ gabble_olpc_view_get_buddy_properties (GabbleOlpcView *self,
{
GabbleOlpcViewPrivate *priv = GABBLE_OLPC_VIEW_GET_PRIVATE (self);
- return g_hash_table_lookup (priv->buddy_properties, GUINT_TO_POINTER (buddy));
+ return g_hash_table_lookup (priv->buddy_properties,
+ GUINT_TO_POINTER (buddy));
}
void
@@ -725,7 +726,8 @@ gabble_olpc_view_get_buddy_activities (GabbleOlpcView *self,
activities = g_ptr_array_new ();
- rooms_set = g_hash_table_lookup (priv->buddy_rooms, GUINT_TO_POINTER (buddy));
+ rooms_set = g_hash_table_lookup (priv->buddy_rooms,
+ GUINT_TO_POINTER (buddy));
if (rooms_set == NULL || tp_handle_set_size (rooms_set) == 0)
return activities;
--
1.5.6.5
More information about the Telepathy-commits
mailing list