diff options
author | Cosimo Cecchi <cosimo.cecchi@collabora.co.uk> | 2009-05-04 01:19:54 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2009-06-01 23:47:37 +0800 |
commit | 74bea808243c98816732864de15a8dfd887d0f22 (patch) | |
tree | 1f1bfb7573d7625ac011343ee64e9ff4d0042ea5 /libempathy | |
parent | 92da9df161cf8e104e783a943d40d7a248a18259 (diff) | |
download | gsoc2013-empathy-74bea808243c98816732864de15a8dfd887d0f22.tar gsoc2013-empathy-74bea808243c98816732864de15a8dfd887d0f22.tar.gz gsoc2013-empathy-74bea808243c98816732864de15a8dfd887d0f22.tar.bz2 gsoc2013-empathy-74bea808243c98816732864de15a8dfd887d0f22.tar.lz gsoc2013-empathy-74bea808243c98816732864de15a8dfd887d0f22.tar.xz gsoc2013-empathy-74bea808243c98816732864de15a8dfd887d0f22.tar.zst gsoc2013-empathy-74bea808243c98816732864de15a8dfd887d0f22.zip |
Emit the TRANSFER_STARTED signal
Emit the TRANSFER_STARTED signal also when offering.
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-ft-handler.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libempathy/empathy-ft-handler.c b/libempathy/empathy-ft-handler.c index 4326ee130..c6babb820 100644 --- a/libempathy/empathy-ft-handler.c +++ b/libempathy/empathy-ft-handler.c @@ -409,6 +409,9 @@ ft_handler_create_channel_cb (EmpathyDispatchOperation *operation, priv->tpfile = g_object_ref (empathy_dispatch_operation_get_channel_wrapper (operation)); + + g_signal_emit (handler, signals[TRANSFER_STARTED], 0, priv->tpfile); + empathy_tp_file_offer (priv->tpfile, priv->gfile, priv->cancellable, ft_transfer_progress_callback, handler, ft_transfer_operation_callback, handler); |