empathy r1876 - trunk/libempathy



Author: xclaesse
Date: Fri Nov 21 16:22:42 2008
New Revision: 1876
URL: http://svn.gnome.org/viewvc/empathy?rev=1876&view=rev

Log:
Fix coding style

Modified:
   trunk/libempathy/empathy-tp-contact-factory.c

Modified: trunk/libempathy/empathy-tp-contact-factory.c
==============================================================================
--- trunk/libempathy/empathy-tp-contact-factory.c	(original)
+++ trunk/libempathy/empathy-tp-contact-factory.c	Fri Nov 21 16:22:42 2008
@@ -822,57 +822,57 @@
 
 static void
 get_requestable_channel_classes_cb (TpProxy *connection,
-                                    const GValue *value,
-                                    const GError *error,
-                                    gpointer user_data,
-                                    GObject *weak_object)
+				    const GValue *value,
+				    const GError *error,
+				    gpointer user_data,
+				    GObject *weak_object)
 {
-  EmpathyTpContactFactory *self = EMPATHY_TP_CONTACT_FACTORY (user_data);
-  EmpathyTpContactFactoryPriv *priv = GET_PRIV (self);
-  GPtrArray *classes;
-  guint i;
+	EmpathyTpContactFactory     *self = EMPATHY_TP_CONTACT_FACTORY (weak_object);
+	EmpathyTpContactFactoryPriv *priv = GET_PRIV (self);
+	GPtrArray                   *classes;
+	guint                        i;
 
-  if (error != NULL)
-    {
-      DEBUG ("Error: %s", error->message);
-      tp_contact_factory_ready (self);
-      return;
-    }
+	if (error != NULL) {
+		DEBUG ("Error: %s", error->message);
+		tp_contact_factory_ready (self);
+		return;
+	}
 
-  classes = g_value_get_boxed (value);
+	classes = g_value_get_boxed (value);
+	for (i = 0; i < classes->len; i++) {
+		GValue class = {0,};
+		GValue *chan_type, *handle_type;
+		GHashTable *fixed_prop;
+
+		g_value_init (&class, TP_STRUCT_TYPE_REQUESTABLE_CHANNEL_CLASS);
+		g_value_set_static_boxed (&class, g_ptr_array_index (classes, i));
+
+		dbus_g_type_struct_get (&class,
+					0, &fixed_prop,
+					G_MAXUINT);
+
+		chan_type = g_hash_table_lookup (fixed_prop,
+			TP_IFACE_CHANNEL ".ChannelType");
+		if (chan_type == NULL ||
+		    tp_strdiff (g_value_get_string (chan_type),
+		    		EMP_IFACE_CHANNEL_TYPE_FILE_TRANSFER)) {
+			continue;
+		}
 
-  for (i = 0; i < classes->len; i++)
-    {
-      GValue class = {0,};
-      GValue *chan_type, *handle_type;
-      GHashTable *fixed_prop;
-
-      g_value_init (&class, TP_STRUCT_TYPE_REQUESTABLE_CHANNEL_CLASS);
-      g_value_set_static_boxed (&class, g_ptr_array_index (classes, i));
-
-      dbus_g_type_struct_get (&class,
-          0, &fixed_prop,
-          G_MAXUINT);
-
-      chan_type = g_hash_table_lookup (fixed_prop,
-          TP_IFACE_CHANNEL ".ChannelType");
-      if (chan_type == NULL || tp_strdiff (g_value_get_string (chan_type),
-            EMP_IFACE_CHANNEL_TYPE_FILE_TRANSFER))
-        continue;
-
-      handle_type = g_hash_table_lookup (fixed_prop,
-        TP_IFACE_CHANNEL ".TargetHandleType");
-      if (handle_type == NULL || g_value_get_uint (handle_type)
-          != TP_HANDLE_TYPE_CONTACT)
-        continue;
+		handle_type = g_hash_table_lookup (fixed_prop,
+			TP_IFACE_CHANNEL ".TargetHandleType");
+		if (handle_type == NULL ||
+		    g_value_get_uint (handle_type) != TP_HANDLE_TYPE_CONTACT) {
+			continue;
+		}
 
-      /* We can request file transfer channel to contacts. */
-      priv->can_request_ft = TRUE;
+		/* We can request file transfer channel to contacts. */
+		priv->can_request_ft = TRUE;
 
-      break;
-    }
+		break;
+	}
 
-  tp_contact_factory_ready (self);
+	tp_contact_factory_ready (self);
 }
 
 static void
@@ -904,11 +904,12 @@
 		priv->avatar_max_size = max_size;
 	}
 
-  /* Can we request file transfer channels? */
-  tp_cli_dbus_properties_call_get (priv->connection, -1,
-    TP_IFACE_CONNECTION_INTERFACE_REQUESTS, "RequestableChannelClasses",
-    get_requestable_channel_classes_cb, tp_factory, NULL,
-    G_OBJECT (tp_factory));
+	/* Can we request file transfer channels? */
+	tp_cli_dbus_properties_call_get (priv->connection, -1,
+		TP_IFACE_CONNECTION_INTERFACE_REQUESTS,
+		"RequestableChannelClasses",
+		get_requestable_channel_classes_cb, NULL, NULL,
+		G_OBJECT (tp_factory));
 }
 
 static void



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]