diff options
author | Cosimo Cecchi <cosimo.cecchi@collabora.co.uk> | 2009-05-24 19:04:33 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2009-06-01 23:53:24 +0800 |
commit | 69cf2699ca14176d12c980d8de401abf81c435c4 (patch) | |
tree | fa58b298ca4608cf5e7bfd2c6c4bc7f9f09e436d /libempathy/empathy-ft-handler.h | |
parent | ab0ce8a4bde442384f0e2ca6b0de973e75183607 (diff) | |
download | gsoc2013-empathy-69cf2699ca14176d12c980d8de401abf81c435c4.tar gsoc2013-empathy-69cf2699ca14176d12c980d8de401abf81c435c4.tar.gz gsoc2013-empathy-69cf2699ca14176d12c980d8de401abf81c435c4.tar.bz2 gsoc2013-empathy-69cf2699ca14176d12c980d8de401abf81c435c4.tar.lz gsoc2013-empathy-69cf2699ca14176d12c980d8de401abf81c435c4.tar.xz gsoc2013-empathy-69cf2699ca14176d12c980d8de401abf81c435c4.tar.zst gsoc2013-empathy-69cf2699ca14176d12c980d8de401abf81c435c4.zip |
Remove the use_hash arg and property
Remove the use_hash construct arg and property from EmpathyFTHandler and
make it clear in the docs how clients are supposed to know whether we
are hashing or not.
Also, port EmpathyFTFactory to the new API
Diffstat (limited to 'libempathy/empathy-ft-handler.h')
-rw-r--r-- | libempathy/empathy-ft-handler.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libempathy/empathy-ft-handler.h b/libempathy/empathy-ft-handler.h index 0f715321a..7d4153611 100644 --- a/libempathy/empathy-ft-handler.h +++ b/libempathy/empathy-ft-handler.h @@ -71,7 +71,6 @@ GType empathy_ft_handler_get_type (void); /* public methods */ void empathy_ft_handler_new_outgoing (EmpathyContact *contact, GFile *source, - gboolean use_hash, EmpathyFTHandlerReadyCallback callback, gpointer user_data); @@ -79,8 +78,7 @@ void empathy_ft_handler_new_incoming (EmpathyTpFile *tp_file, EmpathyFTHandlerReadyCallback callback, gpointer user_data); void empathy_ft_handler_incoming_set_destination (EmpathyFTHandler *handler, - GFile *destination, - gboolean use_hash); + GFile *destination); void empathy_ft_handler_start_transfer (EmpathyFTHandler *handler); void empathy_ft_handler_cancel_transfer (EmpathyFTHandler *handler); |