diff options
author | rbuj <[email protected]> | 2020-12-31 09:26:32 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-01-16 10:51:02 +0100 |
commit | dd71dbb570b45cef2ea4110cd29b36ddb7ede534 (patch) | |
tree | 8d14c012fbdc7c5b60a9f24d93f17f25db224c84 /sendto/plugins/pidgin/pidgin.c | |
parent | 5bcfd992f981aef751fc7f681b9789aa08b8961c (diff) | |
download | caja-extensions-dd71dbb570b45cef2ea4110cd29b36ddb7ede534.tar.bz2 caja-extensions-dd71dbb570b45cef2ea4110cd29b36ddb7ede534.tar.xz |
Remove warning -Wshadow
Diffstat (limited to 'sendto/plugins/pidgin/pidgin.c')
-rw-r--r-- | sendto/plugins/pidgin/pidgin.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sendto/plugins/pidgin/pidgin.c b/sendto/plugins/pidgin/pidgin.c index f18a11f..d4525e1 100644 --- a/sendto/plugins/pidgin/pidgin.c +++ b/sendto/plugins/pidgin/pidgin.c @@ -231,22 +231,21 @@ add_pidgin_contacts_to_model (GtkTreeStore *store, g_hash_table_iter_init (&hiter, contact_hash); while (g_hash_table_iter_next (&hiter, NULL, (gpointer)&contacts_group)) { - gint accounts; + gint num_accounts; dat = g_ptr_array_index (contacts_group, 0); - accounts = contacts_group->len; + num_accounts = contacts_group->len; gtk_tree_store_append (store, parent, NULL); gtk_tree_store_set (store, parent, COL_ICON, NULL, COL_ALIAS, dat->alias, -1); - gint i; - for (i = 0; i < accounts; ++i) { + for (i = 0; i < num_accounts; ++i) { dat = g_ptr_array_index (contacts_group, i); icon = get_buddy_icon(dat->id); - if (accounts == 1) { + if (num_accounts == 1) { g_value_init(&val, GDK_TYPE_PIXBUF); g_value_set_object (&val, (gpointer)icon); gtk_tree_store_set_value (store, parent, COL_ICON, &val); |