diff options
author | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-08-08 18:58:06 +0800 |
---|---|---|
committer | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-08-10 19:01:16 +0800 |
commit | e9ba3819abea368201c6f8bd90ccfb134fc6e445 (patch) | |
tree | b789c972f421fe5b9a2fa4c79e35ce9e0c0afe45 | |
parent | dab1360f7fbbec5237a038022671532012cdae92 (diff) | |
download | gsoc2013-empathy-e9ba3819abea368201c6f8bd90ccfb134fc6e445.tar gsoc2013-empathy-e9ba3819abea368201c6f8bd90ccfb134fc6e445.tar.gz gsoc2013-empathy-e9ba3819abea368201c6f8bd90ccfb134fc6e445.tar.bz2 gsoc2013-empathy-e9ba3819abea368201c6f8bd90ccfb134fc6e445.tar.lz gsoc2013-empathy-e9ba3819abea368201c6f8bd90ccfb134fc6e445.tar.xz gsoc2013-empathy-e9ba3819abea368201c6f8bd90ccfb134fc6e445.tar.zst gsoc2013-empathy-e9ba3819abea368201c6f8bd90ccfb134fc6e445.zip |
CallWindow: don't set the title for multiple participants
We don't support that yet, the string is wrong, and
priv->contact can't be NULL anyway.
https://bugzilla.gnome.org/show_bug.cgi?id=655478
-rw-r--r-- | src/empathy-call-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-call-window.c b/src/empathy-call-window.c index 3ce138f17..3398a7b45 100644 --- a/src/empathy-call-window.c +++ b/src/empathy-call-window.c @@ -1047,7 +1047,7 @@ set_window_title (EmpathyCallWindow *self) } else { - gtk_window_set_title (GTK_WINDOW (self), _("Call with %d participants")); + g_warning ("Unknown remote contact!"); } } |