diff options
author | Cosimo Cecchi <cosimo.cecchi@collabora.co.uk> | 2009-05-16 00:15:36 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2009-06-01 23:53:17 +0800 |
commit | 69765b1425c0ab80df655df5a5e7a96b707beee6 (patch) | |
tree | 3ea9bea85bc1d9f28ac65f5e42a291f24eca0efe /libempathy/empathy-ft-factory.h | |
parent | 0caac94000e5681e22e0938af94ed5ed4d3d206b (diff) | |
download | gsoc2013-empathy-69765b1425c0ab80df655df5a5e7a96b707beee6.tar.gz gsoc2013-empathy-69765b1425c0ab80df655df5a5e7a96b707beee6.tar.zst gsoc2013-empathy-69765b1425c0ab80df655df5a5e7a96b707beee6.zip |
Adapt the code to the tp style.
Diffstat (limited to 'libempathy/empathy-ft-factory.h')
-rw-r--r-- | libempathy/empathy-ft-factory.h | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/libempathy/empathy-ft-factory.h b/libempathy/empathy-ft-factory.h index 82dcb660b..27fad9a13 100644 --- a/libempathy/empathy-ft-factory.h +++ b/libempathy/empathy-ft-factory.h @@ -35,15 +35,18 @@ G_BEGIN_DECLS #define EMPATHY_TYPE_FT_FACTORY empathy_ft_factory_get_type() #define EMPATHY_FT_FACTORY(obj) \ - (G_TYPE_CHECK_INSTANCE_CAST ((obj), EMPATHY_TYPE_FT_FACTORY, EmpathyFTFactory)) + (G_TYPE_CHECK_INSTANCE_CAST ((obj), \ + EMPATHY_TYPE_FT_FACTORY, EmpathyFTFactory)) #define EMPATHY_FT_FACTORY_CLASS(klass) \ - (G_TYPE_CHECK_CLASS_CAST ((klass), EMPATHY_TYPE_FT_FACTORY, EmpathyFTFactoryClass)) + (G_TYPE_CHECK_CLASS_CAST ((klass), \ + EMPATHY_TYPE_FT_FACTORY, EmpathyFTFactoryClass)) #define EMPATHY_IS_FT_FACTORY(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EMPATHY_TYPE_FT_FACTORY)) #define EMPATHY_IS_FT_FACTORY_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE ((klass), EMPATHY_TYPE_FT_FACTORY)) #define EMPATHY_FT_FACTORY_GET_CLASS(obj) \ - (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_FT_FACTORY, EmpathyFTFactoryClass)) + (G_TYPE_INSTANCE_GET_CLASS ((obj), \ + EMPATHY_TYPE_FT_FACTORY, EmpathyFTFactoryClass)) typedef struct { GObject parent; @@ -59,12 +62,16 @@ GType empathy_ft_factory_get_type (void); /* public methods */ EmpathyFTFactory* empathy_ft_factory_dup_singleton (void); void empathy_ft_factory_new_transfer_outgoing (EmpathyFTFactory *factory, - EmpathyContact *contact, GFile *source, gboolean use_hash); + EmpathyContact *contact, + GFile *source, + gboolean use_hash); void empathy_ft_factory_claim_channel (EmpathyFTFactory *factory, - EmpathyDispatchOperation *operation); -void empathy_ft_factory_set_destination_for_incoming_handler - (EmpathyFTFactory *factory, EmpathyFTHandler *handler, - GFile *destination, gboolean use_hash); + EmpathyDispatchOperation *operation); +void empathy_ft_factory_set_destination_for_incoming_handler ( + EmpathyFTFactory *factory, + EmpathyFTHandler *handler, + GFile *destination, + gboolean use_hash); G_END_DECLS |