]> git.0d.be Git - empathy.git/commitdiff
Make coding style consistent with the rest of the file
authorXavier Claessens <xclaesse@src.gnome.org>
Fri, 9 Jan 2009 16:14:30 +0000 (16:14 +0000)
committerXavier Claessens <xclaesse@src.gnome.org>
Fri, 9 Jan 2009 16:14:30 +0000 (16:14 +0000)
svn path=/trunk/; revision=2171

libempathy-gtk/empathy-ui-utils.c

index 10c32bcb7a30092260835bbdf4e0e32acca8ea17..7e16fd6e076bca94d15c216b8bc0c0efa2c8cc46 100644 (file)
@@ -1424,27 +1424,26 @@ empathy_toggle_button_set_state_quietly (GtkWidget *widget,
 
 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