From e8e6da16764e24d4137c16ae1009a9be701ddfaa Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Thu, 11 Jul 2002 21:14:52 +0000 Subject: Actually pass the evolution URI, not the path, in Folder.evolutionUri * e-summary-preferences.c (set_selected_folders): Actually pass the evolution URI, not the path, in Folder.evolutionUri (since now the shell StorageSetView implementation has been fixed to handle this field properly). * evolution-storage-set-view.c (impl_StorageSetView__set_checkedFolders): Handle Folder.evolutionUri as a URI, not as a path. Also use e_free_string_list(). svn path=/trunk/; revision=17425 --- shell/evolution-storage-set-view.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'shell/evolution-storage-set-view.c') diff --git a/shell/evolution-storage-set-view.c b/shell/evolution-storage-set-view.c index 4253ea3158..0e0c4c16f7 100644 --- a/shell/evolution-storage-set-view.c +++ b/shell/evolution-storage-set-view.c @@ -314,16 +314,16 @@ impl_StorageSetView__set_checkedFolders (PortableServer_Servant servant, priv = storage_set_view->priv; for (i = 0; i < list->_length; i++) { - path_list = g_list_append (path_list, g_strdup (list->_buffer[i].evolutionUri)); - } - - e_storage_set_view_set_checkboxes_list (E_STORAGE_SET_VIEW (priv->storage_set_view_widget), path_list); + if (strncmp (list->_buffer[i].evolutionUri, "evolution:", 10) != 0) + continue; - for (p = path_list; p; p = p->next) { - g_free (p->data); + path_list = g_list_append (path_list, g_strdup (list->_buffer[i].evolutionUri + 10)); } - g_list_free (path_list); + e_storage_set_view_set_checkboxes_list (E_STORAGE_SET_VIEW (priv->storage_set_view_widget), + path_list); + + e_free_string_list (path_list); } static GNOME_Evolution_FolderList * -- cgit v1.2.3