aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-call-factory.c
diff options
context:
space:
mode:
authorEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-02-03 21:45:45 +0800
committerEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-02-10 17:46:26 +0800
commitcc91c3f32b15f6a8f1a0d38b8878f27fca412647 (patch)
treea30c9e119c90dfe588e52a37e42019bdcc3f8e12 /libempathy/empathy-call-factory.c
parent2766ed3e19cc8032eedef5cf5cb6ab302a57f63a (diff)
downloadgsoc2013-empathy-cc91c3f32b15f6a8f1a0d38b8878f27fca412647.tar
gsoc2013-empathy-cc91c3f32b15f6a8f1a0d38b8878f27fca412647.tar.gz
gsoc2013-empathy-cc91c3f32b15f6a8f1a0d38b8878f27fca412647.tar.bz2
gsoc2013-empathy-cc91c3f32b15f6a8f1a0d38b8878f27fca412647.tar.lz
gsoc2013-empathy-cc91c3f32b15f6a8f1a0d38b8878f27fca412647.tar.xz
gsoc2013-empathy-cc91c3f32b15f6a8f1a0d38b8878f27fca412647.tar.zst
gsoc2013-empathy-cc91c3f32b15f6a8f1a0d38b8878f27fca412647.zip
EmpathyCallHandler -> EmpathyStreamedMediaHandler
Diffstat (limited to 'libempathy/empathy-call-factory.c')
-rw-r--r--libempathy/empathy-call-factory.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libempathy/empathy-call-factory.c b/libempathy/empathy-call-factory.c
index 6e523aada..4ec3e976b 100644
--- a/libempathy/empathy-call-factory.c
+++ b/libempathy/empathy-call-factory.c
@@ -49,7 +49,7 @@ static void handle_channels_cb (TpSimpleHandler *handler,
/* signal enum */
enum
{
- NEW_CALL_HANDLER,
+ NEW_STREAMED_MEDIA_HANDLER,
LAST_SIGNAL
};
@@ -166,14 +166,14 @@ empathy_call_factory_class_init (
object_class->dispose = empathy_call_factory_dispose;
object_class->finalize = empathy_call_factory_finalize;
- signals[NEW_CALL_HANDLER] =
+ signals[NEW_STREAMED_MEDIA_HANDLER] =
g_signal_new ("new-call-handler",
G_TYPE_FROM_CLASS (empathy_call_factory_class),
G_SIGNAL_RUN_LAST, 0,
NULL, NULL,
_empathy_marshal_VOID__OBJECT_BOOLEAN,
G_TYPE_NONE,
- 2, EMPATHY_TYPE_CALL_HANDLER, G_TYPE_BOOLEAN);
+ 2, EMPATHY_TYPE_STREAMED_MEDIA_HANDLER, G_TYPE_BOOLEAN);
}
EmpathyCallFactory *
@@ -263,13 +263,13 @@ static void
create_call_handler (EmpathyCallFactory *factory,
EmpathyTpStreamedMedia *call)
{
- EmpathyCallHandler *handler;
+ EmpathyStreamedMediaHandler *handler;
g_return_if_fail (factory != NULL);
- handler = empathy_call_handler_new_for_channel (call);
+ handler = empathy_streamed_media_handler_new_for_channel (call);
- g_signal_emit (factory, signals[NEW_CALL_HANDLER], 0,
+ g_signal_emit (factory, signals[NEW_STREAMED_MEDIA_HANDLER], 0,
handler, FALSE);
g_object_unref (handler);