diff options
author | Alban Crequy <alban.crequy@collabora.co.uk> | 2011-09-15 03:40:44 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-09-15 15:49:37 +0800 |
commit | 4c7ee0a436cea45e4351e857577ddf944d36b2f3 (patch) | |
tree | a55f585b8486406544131252e4689231bbd1f7ba /libempathy-gtk | |
parent | e5eefe62e3fc0d0b9c1df569489ab13f76e00a59 (diff) | |
download | gsoc2013-empathy-4c7ee0a436cea45e4351e857577ddf944d36b2f3.tar gsoc2013-empathy-4c7ee0a436cea45e4351e857577ddf944d36b2f3.tar.gz gsoc2013-empathy-4c7ee0a436cea45e4351e857577ddf944d36b2f3.tar.bz2 gsoc2013-empathy-4c7ee0a436cea45e4351e857577ddf944d36b2f3.tar.lz gsoc2013-empathy-4c7ee0a436cea45e4351e857577ddf944d36b2f3.tar.xz gsoc2013-empathy-4c7ee0a436cea45e4351e857577ddf944d36b2f3.tar.zst gsoc2013-empathy-4c7ee0a436cea45e4351e857577ddf944d36b2f3.zip |
Remove unused variables [-Werror=unused-but-set-variable]
https://bugzilla.gnome.org/show_bug.cgi?id=658650
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-contact-list-store.c | 2 | ||||
-rw-r--r-- | libempathy-gtk/empathy-individual-store.c | 2 |
2 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 7568f698c..80fc572d2 100644 --- a/libempathy-gtk/empathy-contact-list-store.c +++ b/libempathy-gtk/empathy-contact-list-store.c @@ -1717,12 +1717,10 @@ contact_list_store_find_contact (EmpathyContactListStore *store, EmpathyContact *contact) { EmpathyContactListStorePriv *priv = GET_PRIV (store); - GtkTreeModel *model; GQueue *row_refs_queue; GList *i; GList *iters_list = NULL; - model = GTK_TREE_MODEL (store); row_refs_queue = g_hash_table_lookup (priv->empathy_contact_cache, contact); if (!row_refs_queue) return NULL; diff --git a/libempathy-gtk/empathy-individual-store.c b/libempathy-gtk/empathy-individual-store.c index f3fd45195..a499bf1cc 100644 --- a/libempathy-gtk/empathy-individual-store.c +++ b/libempathy-gtk/empathy-individual-store.c @@ -311,12 +311,10 @@ individual_store_find_contact (EmpathyIndividualStore *self, FolksIndividual *individual) { EmpathyIndividualStorePriv *priv = GET_PRIV (self); - GtkTreeModel *model; GQueue *row_refs_queue; GList *i; GList *iters_list = NULL; - model = GTK_TREE_MODEL (self); row_refs_queue = g_hash_table_lookup (priv->folks_individual_cache, individual); if (!row_refs_queue) |