diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2009-05-18 20:30:08 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2009-06-01 23:53:20 +0800 |
commit | 948f05b5e6b28afbfc0549efe6cc4fd55598738c (patch) | |
tree | 6b5bc21b51694908d289cb96072c3412b4912f0b /libempathy/empathy-ft-handler.c | |
parent | 28ca5c25c82b7cb8898d2d967bee88b604c109d4 (diff) | |
download | gsoc2013-empathy-948f05b5e6b28afbfc0549efe6cc4fd55598738c.tar gsoc2013-empathy-948f05b5e6b28afbfc0549efe6cc4fd55598738c.tar.gz gsoc2013-empathy-948f05b5e6b28afbfc0549efe6cc4fd55598738c.tar.bz2 gsoc2013-empathy-948f05b5e6b28afbfc0549efe6cc4fd55598738c.tar.lz gsoc2013-empathy-948f05b5e6b28afbfc0549efe6cc4fd55598738c.tar.xz gsoc2013-empathy-948f05b5e6b28afbfc0549efe6cc4fd55598738c.tar.zst gsoc2013-empathy-948f05b5e6b28afbfc0549efe6cc4fd55598738c.zip |
Use the right macros to pass a gboolean as user_data
Use GPOINTER_TO_INT and GINT_TO_POINTER instead of passing the address,
as that doesn't work.
Diffstat (limited to 'libempathy/empathy-ft-handler.c')
-rw-r--r-- | libempathy/empathy-ft-handler.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libempathy/empathy-ft-handler.c b/libempathy/empathy-ft-handler.c index 4a1403875..e2172bcd5 100644 --- a/libempathy/empathy-ft-handler.c +++ b/libempathy/empathy-ft-handler.c @@ -694,6 +694,8 @@ ft_handler_check_if_allowed (EmpathyFTHandler *handler) TP_IFACE_CHANNEL ".TargetHandle")) res = FALSE; + DEBUG ("check if FT allowed: %s", res ? "True" : "False"); + g_object_unref (dispatcher); return res; |