diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-05-28 20:49:26 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-05-28 21:51:24 +0800 |
commit | 765d58d5285f6c18b2b091bd42dd3592b2f06560 (patch) | |
tree | 6116a096a8baa197d74334ab80bb80e43500d5df /mail/em-folder-tree.c | |
parent | bb20ede8bcb6343b1d339f1d17394e903a5270c4 (diff) | |
download | gsoc2013-evolution-765d58d5285f6c18b2b091bd42dd3592b2f06560.tar.gz gsoc2013-evolution-765d58d5285f6c18b2b091bd42dd3592b2f06560.tar.zst gsoc2013-evolution-765d58d5285f6c18b2b091bd42dd3592b2f06560.zip |
Remove display_name from EMFolderTreeModelStoreInfo.
It was only being used to look up an EAccount UID, but we already had
the CamelStore, and the CamelStore UID is the same as the EAccount UID.
Diffstat (limited to 'mail/em-folder-tree.c')
-rw-r--r-- | mail/em-folder-tree.c | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/mail/em-folder-tree.c b/mail/em-folder-tree.c index ab1273aeb1..1a045991ed 100644 --- a/mail/em-folder-tree.c +++ b/mail/em-folder-tree.c @@ -551,11 +551,10 @@ folder_tree_maybe_expand_row (EMFolderTreeModel *model, EMFolderTree *folder_tree) { EMFolderTreePrivate *priv = folder_tree->priv; - struct _EMFolderTreeModelStoreInfo *si; CamelStore *store; - EAccount *account; gchar *full_name; gchar *key; + const gchar *uid; struct _selected_uri *u; gtk_tree_model_get ( @@ -563,16 +562,8 @@ folder_tree_maybe_expand_row (EMFolderTreeModel *model, COL_STRING_FULL_NAME, &full_name, COL_POINTER_CAMEL_STORE, &store, -1); - si = em_folder_tree_model_lookup_store_info (model, store); - if ((account = e_get_account_by_name (si->display_name))) { - key = g_strdup_printf ("%s/%s", account->uid, full_name ? full_name : ""); - } else if (CAMEL_IS_VEE_STORE (store)) { - /* vfolder store */ - key = g_strdup_printf ("vfolder/%s", full_name ? full_name : ""); - } else { - /* local store */ - key = g_strdup_printf ("local/%s", full_name ? full_name : ""); - } + uid = camel_service_get_uid (CAMEL_SERVICE (store)); + key = g_strdup_printf ("%s/%s", uid, full_name ? full_name : ""); u = g_hash_table_lookup (priv->select_uris_table, key); if (u) { |