diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-01-18 20:34:54 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-01-26 00:04:20 +0800 |
commit | 99ff3fc5e1115987daffeb3ba3ea75bace884247 (patch) | |
tree | 392af31264c140493384b6ca6db507e1bef0bb42 /libempathy-gtk | |
parent | 3b3954e6e71f30324c88a2d70cbcc5375a19aaae (diff) | |
download | gsoc2013-empathy-99ff3fc5e1115987daffeb3ba3ea75bace884247.tar gsoc2013-empathy-99ff3fc5e1115987daffeb3ba3ea75bace884247.tar.gz gsoc2013-empathy-99ff3fc5e1115987daffeb3ba3ea75bace884247.tar.bz2 gsoc2013-empathy-99ff3fc5e1115987daffeb3ba3ea75bace884247.tar.lz gsoc2013-empathy-99ff3fc5e1115987daffeb3ba3ea75bace884247.tar.xz gsoc2013-empathy-99ff3fc5e1115987daffeb3ba3ea75bace884247.tar.zst gsoc2013-empathy-99ff3fc5e1115987daffeb3ba3ea75bace884247.zip |
contact_list_store_update_list_mode_foreach: remove useless show_protocol variable
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-contact-list-store.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libempathy-gtk/empathy-contact-list-store.c b/libempathy-gtk/empathy-contact-list-store.c index 91749e16f..08e6f59c1 100644 --- a/libempathy-gtk/empathy-contact-list-store.c +++ b/libempathy-gtk/empathy-contact-list-store.c @@ -1641,7 +1641,6 @@ contact_list_store_update_list_mode_foreach (GtkTreeModel *model, { EmpathyContactListStorePriv *priv; gboolean show_avatar = FALSE; - gboolean show_protocol = FALSE; EmpathyContact *contact; GdkPixbuf *pixbuf_status; @@ -1650,9 +1649,6 @@ contact_list_store_update_list_mode_foreach (GtkTreeModel *model, if (priv->show_avatars && !priv->is_compact) { show_avatar = TRUE; } - if (priv->show_protocols && !priv->is_compact) { - show_protocol = TRUE; - } gtk_tree_model_get (model, iter, EMPATHY_CONTACT_LIST_STORE_COL_CONTACT, &contact, |