aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-ui-utils.c
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2009-01-10 00:14:30 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-01-10 00:14:30 +0800
commit333eedec653900935f0bfa15d3c6bb6381a78314 (patch)
treed4b2c3fa6ef4131a71da2d743cf8d0b025ef497e /libempathy-gtk/empathy-ui-utils.c
parentdcbcdcb628979991c26404b9262a76d13f1bf4f9 (diff)
downloadgsoc2013-empathy-333eedec653900935f0bfa15d3c6bb6381a78314.tar
gsoc2013-empathy-333eedec653900935f0bfa15d3c6bb6381a78314.tar.gz
gsoc2013-empathy-333eedec653900935f0bfa15d3c6bb6381a78314.tar.bz2
gsoc2013-empathy-333eedec653900935f0bfa15d3c6bb6381a78314.tar.lz
gsoc2013-empathy-333eedec653900935f0bfa15d3c6bb6381a78314.tar.xz
gsoc2013-empathy-333eedec653900935f0bfa15d3c6bb6381a78314.tar.zst
gsoc2013-empathy-333eedec653900935f0bfa15d3c6bb6381a78314.zip
Make coding style consistent with the rest of the file
svn path=/trunk/; revision=2171
Diffstat (limited to 'libempathy-gtk/empathy-ui-utils.c')
-rw-r--r--libempathy-gtk/empathy-ui-utils.c29
1 files changed, 14 insertions, 15 deletions
diff --git a/libempathy-gtk/empathy-ui-utils.c b/libempathy-gtk/empathy-ui-utils.c
index 10c32bcb7..7e16fd6e0 100644
--- a/libempathy-gtk/empathy-ui-utils.c
+++ b/libempathy-gtk/empathy-ui-utils.c
@@ -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