diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-04-28 18:51:06 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-04-28 18:51:06 +0800 |
commit | 01371c6a48109e673fbec918fba8ad6c83abd8a5 (patch) | |
tree | 7b1b6e84a0710f05633cb82b22aef099f952e29c /libempathy | |
parent | 0ced9a43b562b567d97a98d18da2bceaff3e68e3 (diff) | |
download | gsoc2013-empathy-01371c6a48109e673fbec918fba8ad6c83abd8a5.tar gsoc2013-empathy-01371c6a48109e673fbec918fba8ad6c83abd8a5.tar.gz gsoc2013-empathy-01371c6a48109e673fbec918fba8ad6c83abd8a5.tar.bz2 gsoc2013-empathy-01371c6a48109e673fbec918fba8ad6c83abd8a5.tar.lz gsoc2013-empathy-01371c6a48109e673fbec918fba8ad6c83abd8a5.tar.xz gsoc2013-empathy-01371c6a48109e673fbec918fba8ad6c83abd8a5.tar.zst gsoc2013-empathy-01371c6a48109e673fbec918fba8ad6c83abd8a5.zip |
tube-handler: fix functions definition style
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-tube-handler.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/libempathy/empathy-tube-handler.c b/libempathy/empathy-tube-handler.c index d4c4d63be..a73cd4765 100644 --- a/libempathy/empathy-tube-handler.c +++ b/libempathy/empathy-tube-handler.c @@ -87,8 +87,8 @@ tube_ready_destroy_notify (gpointer data) static void channel_ready_cb (TpChannel *channel, - const GError *error, - gpointer data) + const GError *error, + gpointer data) { IdleData *idle_data = data; @@ -109,8 +109,8 @@ channel_ready_cb (TpChannel *channel, static void connection_ready_cb (TpConnection *connection, - const GError *error, - gpointer data) + const GError *error, + gpointer data) { TpChannel *channel; IdleData *idle_data = data; @@ -153,12 +153,12 @@ tube_handler_handle_tube_idle_cb (gpointer data) static void tube_handler_handle_tube (EmpSvcTubeHandler *self, - const gchar *bus_name, - const gchar *connection, - const gchar *channel, - guint handle_type, - guint handle, - DBusGMethodInvocation *context) + const gchar *bus_name, + const gchar *connection, + const gchar *channel, + guint handle_type, + guint handle, + DBusGMethodInvocation *context) { EmpathyTubeHandler *thandler = EMPATHY_TUBE_HANDLER (self); IdleData *data; @@ -199,7 +199,8 @@ empathy_tube_handler_init (EmpathyTubeHandler *thandler) } EmpathyTubeHandler * -empathy_tube_handler_new (TpTubeType type, const gchar *service) +empathy_tube_handler_new (TpTubeType type, + const gchar *service) { EmpathyTubeHandler *thandler = NULL; DBusGProxy *proxy; @@ -299,4 +300,3 @@ empathy_tube_handler_build_object_path (TpTubeType type, return str; } - |