diff options
author | Dan Winship <danw@src.gnome.org> | 2000-10-30 04:41:55 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-10-30 04:41:55 +0800 |
commit | 9e6c10a18be76719fbba41c36c61abc9c1542710 (patch) | |
tree | 71dd13a5f6211466b0b6dc50de6908615f27b75c /mail/message-list.c | |
parent | b23d7cd857879ca0d4b8c2fa0315da75b0a77e09 (diff) | |
download | gsoc2013-evolution-9e6c10a18be76719fbba41c36c61abc9c1542710.tar.gz gsoc2013-evolution-9e6c10a18be76719fbba41c36c61abc9c1542710.tar.zst gsoc2013-evolution-9e6c10a18be76719fbba41c36c61abc9c1542710.zip |
Don't try to regenerate the message list if there is no folder. (The
* message-list.c (mail_do_regenerate_messagelist): Don't try to
regenerate the message list if there is no folder. (The Bonobo UI
code will call this as the callback for the "Threaded View"
command.)
svn path=/trunk/; revision=6255
Diffstat (limited to 'mail/message-list.c')
-rw-r--r-- | mail/message-list.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mail/message-list.c b/mail/message-list.c index ee2d3694e9..9c44d0a8df 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -1827,6 +1827,12 @@ void mail_do_regenerate_messagelist (MessageList *list, const gchar *search) { regenerate_messagelist_input_t *input; + /* This gets called on empty folder-browsers by the bonobo ui + * callback for threaded view. + */ + if (!list->folder) + return; + input = g_new (regenerate_messagelist_input_t, 1); input->ml = list; input->search = g_strdup (search); |