aboutsummaryrefslogtreecommitdiffstats
path: root/mail/ChangeLog
diff options
context:
space:
mode:
authorNot Zed <NotZed@HelixCode.com>2000-11-21 22:28:06 +0800
committerMichael Zucci <zucchi@src.gnome.org>2000-11-21 22:28:06 +0800
commit8d9d1e00dd89221488084e51b4940469e8db4f4e (patch)
treea1a7ad3abf0c916f4cd0a828a324126b27b9d4eb /mail/ChangeLog
parenta34a4b15b8e5ab5f0a145c17ef0969da9666d8d0 (diff)
downloadgsoc2013-evolution-8d9d1e00dd89221488084e51b4940469e8db4f4e.tar
gsoc2013-evolution-8d9d1e00dd89221488084e51b4940469e8db4f4e.tar.gz
gsoc2013-evolution-8d9d1e00dd89221488084e51b4940469e8db4f4e.tar.bz2
gsoc2013-evolution-8d9d1e00dd89221488084e51b4940469e8db4f4e.tar.lz
gsoc2013-evolution-8d9d1e00dd89221488084e51b4940469e8db4f4e.tar.xz
gsoc2013-evolution-8d9d1e00dd89221488084e51b4940469e8db4f4e.tar.zst
gsoc2013-evolution-8d9d1e00dd89221488084e51b4940469e8db4f4e.zip
IF we dont find a source, clear the exception and ignore it silently. for
2000-11-21 Not Zed <NotZed@HelixCode.com> * mail-vfolder.c (vfolder_uri_to_folder): IF we dont find a source, clear the exception and ignore it silently. for e.g. if the user reconfigured their mailboxes and one of them no longer exists. * message-list.c: (message_list_set_folder): If we get set a new folder, unhook any events before unrefing the folder too (the folder is never reset currently, but this would cause problems). (subtree_unread): Check for uid null, wont crash, but its a bug. (ml_tree_value_at): If the uid is null, then fake an obviously bad line. (build_subtree): Yeah well, we can't like freeze/thaw here, because this is called recursive, and freeze/thaw isn't recursive, like pre model and post model change was. (build_tree): Maybe we can try it here, although i dont think it'll help much. (build_flat): And this is also a tree. yes a tree. (build_tree): Added changes arg. If set, then try the 'diff' approach, unless the tree is already empty. (message_list_set_threaded): Dont clear the tree here. (message_list_set_search): Or here. svn path=/trunk/; revision=6629
Diffstat (limited to 'mail/ChangeLog')
-rw-r--r--mail/ChangeLog22
1 files changed, 22 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index d1b08601e7..4afc22ac4c 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,9 @@
+2000-11-21 Not Zed <NotZed@HelixCode.com>
+
+ * mail-vfolder.c (vfolder_uri_to_folder): IF we dont find a
+ source, clear the exception and ignore it silently. for e.g. if
+ the user reconfigured their mailboxes and one of them no longer
+ exists.
2000-11-21 Radek Doulik <rodo@helixcode.com>
* mail-display.c: #include <gtkhtml/gtkhtml-embedded.h>
@@ -14,6 +20,22 @@
(build_subtree_diff):
(do_regenerate_messagelist):
(cleanup_regenerate_messagelist): Changed to use camel-folder-thread.
+ (message_list_set_folder): If we get set a new folder, unhook any
+ events before unrefing the folder too (the folder is never reset
+ currently, but this would cause problems).
+ (subtree_unread): Check for uid null, wont crash, but its a bug.
+ (ml_tree_value_at): If the uid is null, then fake an obviously bad
+ line.
+ (build_subtree): Yeah well, we can't like freeze/thaw here,
+ because this is called recursive, and freeze/thaw isn't
+ recursive, like pre model and post model change was.
+ (build_tree): Maybe we can try it here, although i dont think
+ it'll help much.
+ (build_flat): And this is also a tree. yes a tree.
+ (build_tree): Added changes arg. If set, then try the 'diff'
+ approach, unless the tree is already empty.
+ (message_list_set_threaded): Dont clear the tree here.
+ (message_list_set_search): Or here.
2000-11-20 Not Zed <NotZed@HelixCode.com>