diff options
author | Dan Winship <danw@src.gnome.org> | 2001-09-19 05:12:37 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-09-19 05:12:37 +0800 |
commit | e73fea5ecfc8b1840eaff2b3c4d88fa9bd46df87 (patch) | |
tree | fb26689f28e86825852605fd9a0affd95a09c472 /mail/ChangeLog | |
parent | 54141f67b759d3533605a06305ead06d1d3ec4f7 (diff) | |
download | gsoc2013-evolution-e73fea5ecfc8b1840eaff2b3c4d88fa9bd46df87.tar gsoc2013-evolution-e73fea5ecfc8b1840eaff2b3c4d88fa9bd46df87.tar.gz gsoc2013-evolution-e73fea5ecfc8b1840eaff2b3c4d88fa9bd46df87.tar.bz2 gsoc2013-evolution-e73fea5ecfc8b1840eaff2b3c4d88fa9bd46df87.tar.lz gsoc2013-evolution-e73fea5ecfc8b1840eaff2b3c4d88fa9bd46df87.tar.xz gsoc2013-evolution-e73fea5ecfc8b1840eaff2b3c4d88fa9bd46df87.tar.zst gsoc2013-evolution-e73fea5ecfc8b1840eaff2b3c4d88fa9bd46df87.zip |
Merged into folder_browser_new: nothing ever changes the URI of an
* folder-browser.c (folder_browser_set_uri): Merged into
folder_browser_new: nothing ever changes the URI of an existing
folder browser any more.
(folder_browser_new): Make this take a uri argument and do the
work folder_browser_set_uri used to do, except that we set fb->uri
right away, so that if the folder browser's control is activated
before got_folder() gets called, then folder_browser_ui_add_list()
will have access to the correct uri for purposes of setting
ViewThreaded, etc. Fixes #4913.
(got_folder): Don't set fb->uri here since it will already have
been set. Don't call message_list_set_threaded, since it should be
a noop now (and if it's not, it would make the message list not
match the menu item).
* folder-browser-ui.c (folder_browser_ui_add_list): Remove some
code that was failing to work around the problems above.
* message-browser.c (message_browser_new): Pass uri to
folder_browser_new, remove call to set_uri.
* folder-browser-factory.c (folder_browser_factory_new_control):
Likewise. Also fix a s/destroy/unref/ in an error cleanup.
svn path=/trunk/; revision=12954
Diffstat (limited to 'mail/ChangeLog')
-rw-r--r-- | mail/ChangeLog | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index a8f7fa1f00..3536b72fdf 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,28 @@ +2001-09-18 Dan Winship <danw@ximian.com> + + * folder-browser.c (folder_browser_set_uri): Merged into + folder_browser_new: nothing ever changes the URI of an existing + folder browser any more. + (folder_browser_new): Make this take a uri argument and do the + work folder_browser_set_uri used to do, except that we set fb->uri + right away, so that if the folder browser's control is activated + before got_folder() gets called, then folder_browser_ui_add_list() + will have access to the correct uri for purposes of setting + ViewThreaded, etc. Fixes #4913. + (got_folder): Don't set fb->uri here since it will already have + been set. Don't call message_list_set_threaded, since it should be + a noop now (and if it's not, it would make the message list not + match the menu item). + + * folder-browser-ui.c (folder_browser_ui_add_list): Remove some + code that was failing to work around the problems above. + + * message-browser.c (message_browser_new): Pass uri to + folder_browser_new, remove call to set_uri. + + * folder-browser-factory.c (folder_browser_factory_new_control): + Likewise. Also fix a s/destroy/unref/ in an error cleanup. + 2001-09-18 Jeffrey Stedfast <fejj@ximian.com> * mail-session.c (get_password): Pass a 'cache-me' argument to |