diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-12-03 01:17:07 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-04-01 16:15:38 +0800 |
commit | bfa6966c0a677b418a14b5864326b175d926036c (patch) | |
tree | 5e94826f9d8ebaac02fe891d5ae0db505b3e8434 | |
parent | 688514d4d5cca5ad23d6b9c54506252089ac5b49 (diff) | |
download | gsoc2013-empathy-bfa6966c0a677b418a14b5864326b175d926036c.tar gsoc2013-empathy-bfa6966c0a677b418a14b5864326b175d926036c.tar.gz gsoc2013-empathy-bfa6966c0a677b418a14b5864326b175d926036c.tar.bz2 gsoc2013-empathy-bfa6966c0a677b418a14b5864326b175d926036c.tar.lz gsoc2013-empathy-bfa6966c0a677b418a14b5864326b175d926036c.tar.xz gsoc2013-empathy-bfa6966c0a677b418a14b5864326b175d926036c.tar.zst gsoc2013-empathy-bfa6966c0a677b418a14b5864326b175d926036c.zip |
rename initialize_output_elements to create_video_output_widget
-rw-r--r-- | src/empathy-call-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index f1d3e7be3..56d3ab285 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -594,7 +594,7 @@ empathy_call_window_create_audio_input (EmpathyCallWindow *self) } static void -initialize_output_elements (GstBus *bus, EmpathyCallWindow *self) +create_video_output_widget (GstBus *bus, EmpathyCallWindow *self) { EmpathyCallWindowPriv *priv = GET_PRIV (self); @@ -920,7 +920,7 @@ create_pipeline (EmpathyCallWindow *self) priv->bus_message_source_id = gst_bus_add_watch (bus, empathy_call_window_bus_message, self); - initialize_output_elements (bus, self); + create_video_output_widget (bus, self); initialize_input_elements (bus, self); g_object_unref (bus); |