aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2009-02-17 05:24:24 +0800
committerxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2009-02-17 05:24:24 +0800
commitaae4f2d444850177b5a032856f0d9fe5685d353d (patch)
treecf5ebda95dfb8cf871178ac5a47443c7540621ae
parent132f5905bd1ec64eb8deacf2f71e40354cc05872 (diff)
downloadgsoc2013-empathy-aae4f2d444850177b5a032856f0d9fe5685d353d.tar
gsoc2013-empathy-aae4f2d444850177b5a032856f0d9fe5685d353d.tar.gz
gsoc2013-empathy-aae4f2d444850177b5a032856f0d9fe5685d353d.tar.bz2
gsoc2013-empathy-aae4f2d444850177b5a032856f0d9fe5685d353d.tar.lz
gsoc2013-empathy-aae4f2d444850177b5a032856f0d9fe5685d353d.tar.xz
gsoc2013-empathy-aae4f2d444850177b5a032856f0d9fe5685d353d.tar.zst
gsoc2013-empathy-aae4f2d444850177b5a032856f0d9fe5685d353d.zip
empathy-dispatcher.[ch]: Several misc. code style fixes.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk> git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@2475 4ee84921-47dd-4033-b63a-18d7a039a3e4
-rw-r--r--libempathy/empathy-dispatcher.c17
-rw-r--r--libempathy/empathy-dispatcher.h6
2 files changed, 15 insertions, 8 deletions
diff --git a/libempathy/empathy-dispatcher.c b/libempathy/empathy-dispatcher.c
index 6b5c3fba5..06dafa43c 100644
--- a/libempathy/empathy-dispatcher.c
+++ b/libempathy/empathy-dispatcher.c
@@ -698,8 +698,11 @@ dispatcher_connection_new_channels_cb (TpConnection *connection,
}
static void
-dispatcher_connection_got_all (TpProxy *proxy, GHashTable *properties,
- const GError *error, gpointer user_data, GObject *object)
+dispatcher_connection_got_all (TpProxy *proxy,
+ GHashTable *properties,
+ const GError *error,
+ gpointer user_data,
+ GObject *object)
{
EmpathyDispatcher *dispatcher = EMPATHY_DISPATCHER (object);
EmpathyDispatcherPriv *priv = GET_PRIV (dispatcher);
@@ -1342,8 +1345,10 @@ dispatcher_create_channel_cb (TpConnection *connect,
void
empathy_dispatcher_create_channel (EmpathyDispatcher *dispatcher,
- McAccount *account, GHashTable *request,
- EmpathyDispatcherRequestCb *callback, gpointer user_data)
+ McAccount *account,
+ GHashTable *request,
+ EmpathyDispatcherRequestCb *callback,
+ gpointer user_data)
{
EmpathyDispatcherPriv *priv = GET_PRIV (dispatcher);
ConnectionData *connection_data;
@@ -1510,7 +1515,9 @@ empathy_dispatcher_send_file_to_contact (EmpathyContact *contact,
GStrv
empathy_dispatcher_find_channel_class (EmpathyDispatcher *dispatcher,
- McAccount *account, const gchar *channel_type, guint handle_type)
+ McAccount *account,
+ const gchar *channel_type,
+ guint handle_type)
{
EmpathyDispatcherPriv *priv = GET_PRIV (dispatcher);
ConnectionData *cd;
diff --git a/libempathy/empathy-dispatcher.h b/libempathy/empathy-dispatcher.h
index f95161848..231a2c106 100644
--- a/libempathy/empathy-dispatcher.h
+++ b/libempathy/empathy-dispatcher.h
@@ -43,12 +43,12 @@ typedef struct _EmpathyDispatcher EmpathyDispatcher;
typedef struct _EmpathyDispatcherClass EmpathyDispatcherClass;
struct _EmpathyDispatcher {
- GObject parent;
- gpointer priv;
+ GObject parent;
+ gpointer priv;
};
struct _EmpathyDispatcherClass {
- GObjectClass parent_class;
+ GObjectClass parent_class;
};
/* Will be called when the channel is ready for dispatching. The requestor