aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-ft-factory.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-01-31 21:34:21 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-09-27 21:11:27 +0800
commita93e738c107fc5b24c5055027c17559200734c23 (patch)
tree0448b4ba9f13f77f98c0dfea66ea814ec4795e84 /libempathy/empathy-ft-factory.c
parent32152c0067fea614d4aabd0a1f0f5bfa65216af1 (diff)
downloadgsoc2013-empathy-a93e738c107fc5b24c5055027c17559200734c23.tar
gsoc2013-empathy-a93e738c107fc5b24c5055027c17559200734c23.tar.gz
gsoc2013-empathy-a93e738c107fc5b24c5055027c17559200734c23.tar.bz2
gsoc2013-empathy-a93e738c107fc5b24c5055027c17559200734c23.tar.lz
gsoc2013-empathy-a93e738c107fc5b24c5055027c17559200734c23.tar.xz
gsoc2013-empathy-a93e738c107fc5b24c5055027c17559200734c23.tar.zst
gsoc2013-empathy-a93e738c107fc5b24c5055027c17559200734c23.zip
pass to proper user action time when requesting an outgoing FT
https://bugzilla.gnome.org/show_bug.cgi?id=658245
Diffstat (limited to 'libempathy/empathy-ft-factory.c')
-rw-r--r--libempathy/empathy-ft-factory.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libempathy/empathy-ft-factory.c b/libempathy/empathy-ft-factory.c
index 597bbaf51..472451fa0 100644
--- a/libempathy/empathy-ft-factory.c
+++ b/libempathy/empathy-ft-factory.c
@@ -265,13 +265,14 @@ empathy_ft_factory_dup_singleton (void)
void
empathy_ft_factory_new_transfer_outgoing (EmpathyFTFactory *factory,
EmpathyContact *contact,
- GFile *source)
+ GFile *source,
+ gint64 action_time)
{
g_return_if_fail (EMPATHY_IS_FT_FACTORY (factory));
g_return_if_fail (EMPATHY_IS_CONTACT (contact));
g_return_if_fail (G_IS_FILE (source));
- empathy_ft_handler_new_outgoing (contact, source,
+ empathy_ft_handler_new_outgoing (contact, source, action_time,
ft_handler_outgoing_ready_cb, factory);
}