aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-list.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-07-12 04:42:27 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-07-12 04:42:27 +0800
commitf61cf3675624a3fae5544561bef44ccc04cbe697 (patch)
tree3808dc788bd03e0cd8b62b1ffc463f774f193c9a /mail/message-list.c
parent7e4c61d7b8a5d1793f9845dc29815aeaab23ed0c (diff)
downloadgsoc2013-evolution-f61cf3675624a3fae5544561bef44ccc04cbe697.tar
gsoc2013-evolution-f61cf3675624a3fae5544561bef44ccc04cbe697.tar.gz
gsoc2013-evolution-f61cf3675624a3fae5544561bef44ccc04cbe697.tar.bz2
gsoc2013-evolution-f61cf3675624a3fae5544561bef44ccc04cbe697.tar.lz
gsoc2013-evolution-f61cf3675624a3fae5544561bef44ccc04cbe697.tar.xz
gsoc2013-evolution-f61cf3675624a3fae5544561bef44ccc04cbe697.tar.zst
gsoc2013-evolution-f61cf3675624a3fae5544561bef44ccc04cbe697.zip
Disable Search capability menu/entry if folder doesn't support it.
2000-07-11 Jeffrey Stedfast <fejj@helixcode.com> * folder-browser.c (folder_browser_load_folder): Disable Search capability menu/entry if folder doesn't support it. * message-list.c (message_list_regenerate): Don't perform a search if the folder doesn't support it. svn path=/trunk/; revision=4097
Diffstat (limited to 'mail/message-list.c')
-rw-r--r--mail/message-list.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/mail/message-list.c b/mail/message-list.c
index 97347dd87c..73ac39d608 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -810,10 +810,10 @@ message_list_regenerate (MessageList *message_list, const char *search)
g_hash_table_destroy (message_list->uid_rowmap);
}
message_list->uid_rowmap = g_hash_table_new (g_str_hash, g_str_equal);
-
- if (search) {
+
+ if (search && camel_folder_has_search_capability (message_list->folder)) {
CamelException ex;
-
+
camel_exception_init (&ex);
uids = camel_folder_search_by_expression (message_list->folder,
search, &ex);
@@ -826,9 +826,9 @@ message_list_regenerate (MessageList *message_list, const char *search)
message_list->search = g_strdup (search);
} else
uids = camel_folder_get_uids (message_list->folder, NULL);
-
+
/* FIXME: free the old tree data */
-
+
/* Clear the old contents, build the new */
if (message_list->tree_root)
e_tree_model_node_remove(etm, message_list->tree_root);