diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-16 16:34:57 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-16 16:34:57 +0800 |
commit | abbf44c1012f42a9b96c4bf852885ab4d11f021f (patch) | |
tree | 2b953c3f56e976e4f059f6ab02615cc010e8f2d9 | |
parent | 4d4e4d4d9cdfb913b9f93e37cff4fa7a2227eb61 (diff) | |
download | gsoc2013-empathy-abbf44c1012f42a9b96c4bf852885ab4d11f021f.tar gsoc2013-empathy-abbf44c1012f42a9b96c4bf852885ab4d11f021f.tar.gz gsoc2013-empathy-abbf44c1012f42a9b96c4bf852885ab4d11f021f.tar.bz2 gsoc2013-empathy-abbf44c1012f42a9b96c4bf852885ab4d11f021f.tar.lz gsoc2013-empathy-abbf44c1012f42a9b96c4bf852885ab4d11f021f.tar.xz gsoc2013-empathy-abbf44c1012f42a9b96c4bf852885ab4d11f021f.tar.zst gsoc2013-empathy-abbf44c1012f42a9b96c4bf852885ab4d11f021f.zip |
Add/Remove preview window can be done at anytime, the call don't have to be running.
svn path=/trunk/; revision=949
-rw-r--r-- | libempathy/empathy-tp-call.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libempathy/empathy-tp-call.c b/libempathy/empathy-tp-call.c index 9202fc4a9..e39389eae 100644 --- a/libempathy/empathy-tp-call.c +++ b/libempathy/empathy-tp-call.c @@ -712,7 +712,6 @@ empathy_tp_call_add_preview_video (EmpathyTpCall *call, EmpathyTpCallPriv *priv = GET_PRIV (call); g_return_if_fail (EMPATHY_IS_TP_CALL (call)); - g_return_if_fail (priv->status != EMPATHY_TP_CALL_STATUS_CLOSED); empathy_debug (DEBUG_DOMAIN, "Adding preview video"); @@ -730,7 +729,6 @@ empathy_tp_call_remove_preview_video (EmpathyTpCall *call, EmpathyTpCallPriv *priv = GET_PRIV (call); g_return_if_fail (EMPATHY_IS_TP_CALL (call)); - g_return_if_fail (priv->status != EMPATHY_TP_CALL_STATUS_CLOSED); empathy_debug (DEBUG_DOMAIN, "Removing preview video"); |