aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-02-03 23:30:39 +0800
committerEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-02-09 23:34:41 +0800
commitc61ceefda501caad3efc8cad84662972d3652baa (patch)
tree96ea0a8d1b8d23d8c0d80c03ce737ce6ec5b2a14
parent6e2db2cf4831d586d3db73ea431d6c6d18668286 (diff)
downloadgsoc2013-empathy-c61ceefda501caad3efc8cad84662972d3652baa.tar
gsoc2013-empathy-c61ceefda501caad3efc8cad84662972d3652baa.tar.gz
gsoc2013-empathy-c61ceefda501caad3efc8cad84662972d3652baa.tar.bz2
gsoc2013-empathy-c61ceefda501caad3efc8cad84662972d3652baa.tar.lz
gsoc2013-empathy-c61ceefda501caad3efc8cad84662972d3652baa.tar.xz
gsoc2013-empathy-c61ceefda501caad3efc8cad84662972d3652baa.tar.zst
gsoc2013-empathy-c61ceefda501caad3efc8cad84662972d3652baa.zip
::new-call-handler -> ::new-streamed-media-handler
-rw-r--r--libempathy/empathy-call-factory.c2
-rw-r--r--src/empathy-av.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libempathy/empathy-call-factory.c b/libempathy/empathy-call-factory.c
index 4ec3e976b..281434cbe 100644
--- a/libempathy/empathy-call-factory.c
+++ b/libempathy/empathy-call-factory.c
@@ -167,7 +167,7 @@ empathy_call_factory_class_init (
object_class->finalize = empathy_call_factory_finalize;
signals[NEW_STREAMED_MEDIA_HANDLER] =
- g_signal_new ("new-call-handler",
+ g_signal_new ("new-streamed-media-handler",
G_TYPE_FROM_CLASS (empathy_call_factory_class),
G_SIGNAL_RUN_LAST, 0,
NULL, NULL,
diff --git a/src/empathy-av.c b/src/empathy-av.c
index 29d2efadb..6aef1fdd1 100644
--- a/src/empathy-av.c
+++ b/src/empathy-av.c
@@ -88,7 +88,7 @@ activate_cb (GApplication *application)
g_assert (call_factory == NULL);
call_factory = empathy_call_factory_initialise ();
- g_signal_connect (G_OBJECT (call_factory), "new-call-handler",
+ g_signal_connect (G_OBJECT (call_factory), "new-streamed-media-handler",
G_CALLBACK (new_call_handler_cb), NULL);
if (!empathy_call_factory_register (call_factory, &error))