empathy r2171 - trunk/libempathy-gtk



Author: xclaesse
Date: Fri Jan  9 16:14:30 2009
New Revision: 2171
URL: http://svn.gnome.org/viewvc/empathy?rev=2171&view=rev

Log:
Make coding style consistent with the rest of the file

Modified:
   trunk/libempathy-gtk/empathy-ui-utils.c

Modified: trunk/libempathy-gtk/empathy-ui-utils.c
==============================================================================
--- trunk/libempathy-gtk/empathy-ui-utils.c	(original)
+++ trunk/libempathy-gtk/empathy-ui-utils.c	Fri Jan  9 16:14:30 2009
@@ -1424,27 +1424,26 @@
 
 static void
 file_manager_send_file_request_cb (EmpathyDispatchOperation *operation,
-  const GError *error, gpointer user_data)
+				   const GError *error, gpointer user_data)
 {
-  GFile *file = (GFile *)user_data;
-  EmpathyTpFile *tp_file;
+	GFile *file = (GFile *)user_data;
+	EmpathyTpFile *tp_file;
 
-  if (error != NULL)
-    {
-      DEBUG ("Couldn't request channel: %s", error->message);
-      g_object_unref (file);
-      return;
-    }
+	if (error != NULL) {
+		DEBUG ("Couldn't request channel: %s", error->message);
+		g_object_unref (file);
+		return;
+	}
 
-  DEBUG ("Starting to send file");
+	DEBUG ("Starting to send file");
 
-  tp_file = EMPATHY_TP_FILE (
-    empathy_dispatch_operation_get_channel_wrapper (operation));
+	tp_file = EMPATHY_TP_FILE (
+		empathy_dispatch_operation_get_channel_wrapper (operation));
 
-  empathy_tp_file_offer (tp_file, file, NULL);
+	empathy_tp_file_offer (tp_file, file, NULL);
 
-  g_object_unref (file);
-  g_object_unref (tp_file);
+	g_object_unref (file);
+	g_object_unref (tp_file);
 }
 
 static void



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