diff options
author | Dan Winship <danw@src.gnome.org> | 2001-03-30 03:32:40 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-03-30 03:32:40 +0800 |
commit | 13af785f0805a0455dc1f59cea19541489f08da7 (patch) | |
tree | f53d13d8bee8f39be86f93489cce280810d2347b /mail | |
parent | 88668a60b31e2b5d9865ae4d488b1134d47d998c (diff) | |
download | gsoc2013-evolution-13af785f0805a0455dc1f59cea19541489f08da7.tar gsoc2013-evolution-13af785f0805a0455dc1f59cea19541489f08da7.tar.gz gsoc2013-evolution-13af785f0805a0455dc1f59cea19541489f08da7.tar.bz2 gsoc2013-evolution-13af785f0805a0455dc1f59cea19541489f08da7.tar.lz gsoc2013-evolution-13af785f0805a0455dc1f59cea19541489f08da7.tar.xz gsoc2013-evolution-13af785f0805a0455dc1f59cea19541489f08da7.tar.zst gsoc2013-evolution-13af785f0805a0455dc1f59cea19541489f08da7.zip |
Fix this so the "Receiving Options" page gets filled in again.
* mail-account-editor.c (switch_page): Fix this so the "Receiving
Options" page gets filled in again.
svn path=/trunk/; revision=9022
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 3 | ||||
-rw-r--r-- | mail/mail-account-editor.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 14fd5575cd..e977228b01 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,8 @@ 2001-03-29 Dan Winship <danw@ximian.com> + * mail-account-editor.c (switch_page): Fix this so the "Receiving + Options" page gets filled in again. + * mail-send-recv.c (receive_get_folder): Doh! This was storing "struct _folder_info"s in the cache and then trying to read them back as CamelFolders. Fixicate. Fixes the "crash with 2 POP diff --git a/mail/mail-account-editor.c b/mail/mail-account-editor.c index 279304d956..7656732f75 100644 --- a/mail/mail-account-editor.c +++ b/mail/mail-account-editor.c @@ -145,7 +145,7 @@ switch_page (GtkNotebook *notebook, GtkNotebookPage *page, return; if (gsrc && gsrc->provider && source->url && - !strncmp (gsrc->provider->protocol, source->url, strlen (source->url))) + !strncmp (gsrc->provider->protocol, source->url, strlen (gsrc->provider->protocol))) url = source->url; mail_account_gui_build_extra_conf (editor->gui, url); |