diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-06-24 21:34:20 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-06-29 17:34:37 +0800 |
commit | 01e72ff82e7516cf71bdab66e107b8a3df3f1749 (patch) | |
tree | aaa169dbbaa5eea902758db5815b5e1892b2cc67 /libempathy/empathy-call-handler.c | |
parent | 661b357c331dca16c4ff0a075dd7f3982e028dce (diff) | |
download | gsoc2013-empathy-01e72ff82e7516cf71bdab66e107b8a3df3f1749.tar gsoc2013-empathy-01e72ff82e7516cf71bdab66e107b8a3df3f1749.tar.gz gsoc2013-empathy-01e72ff82e7516cf71bdab66e107b8a3df3f1749.tar.bz2 gsoc2013-empathy-01e72ff82e7516cf71bdab66e107b8a3df3f1749.tar.lz gsoc2013-empathy-01e72ff82e7516cf71bdab66e107b8a3df3f1749.tar.xz gsoc2013-empathy-01e72ff82e7516cf71bdab66e107b8a3df3f1749.tar.zst gsoc2013-empathy-01e72ff82e7516cf71bdab66e107b8a3df3f1749.zip |
empathy_call_factory_new_call_with_streams: no need to pass a EmpathyCallFactory
Diffstat (limited to 'libempathy/empathy-call-handler.c')
-rw-r--r-- | libempathy/empathy-call-handler.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy/empathy-call-handler.c b/libempathy/empathy-call-handler.c index 9ba115a60..1f9ab7213 100644 --- a/libempathy/empathy-call-handler.c +++ b/libempathy/empathy-call-handler.c @@ -484,8 +484,8 @@ empathy_call_handler_start_call (EmpathyCallHandler *handler, * will be used to create a new EmpathyTpCall. */ g_assert (priv->contact != NULL); - empathy_call_factory_new_call_with_streams (empathy_call_factory_get (), - priv->contact, priv->initial_audio, priv->initial_video, timestamp, + empathy_call_factory_new_call_with_streams (priv->contact, + priv->initial_audio, priv->initial_video, timestamp, empathy_call_handler_request_cb, handler); } |