diff options
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/em-account-editor.c | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 82fee62410..f7968aee9b 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2006-02-06 Veerapuram Varadhan <vvaradhan@novell.com> + + ** Fixes #326147 + * em-account-editor.c: (em_account-editor.c): Modify e_source to + reflect to the reverted changes. + 2006-02-05 Karsten Bräckelmann <guenther@rudersport.de> * importers/pine-importer.c (pine_getwidget): diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index ed747e8b49..a11621c7c8 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -205,7 +205,7 @@ typedef struct _EMAccountEditorPrivate { static void emae_refresh_authtype(EMAccountEditor *emae, EMAccountEditorService *service); static void em_account_editor_construct(EMAccountEditor *emae, EAccount *account, em_account_editor_t type, char *id); - +static void emae_account_folder_changed(EMFolderSelectionButton *folder, EMAccountEditor *emae); static GtkVBoxClass *emae_parent; static void @@ -458,9 +458,11 @@ default_folders_clicked (GtkButton *button, gpointer user_data) uri = mail_component_get_folder_uri(NULL, MAIL_COMPONENT_FOLDER_DRAFTS); em_folder_selection_button_set_selection((EMFolderSelectionButton *)emae->priv->drafts_folder_button, uri); + emae_account_folder_changed((EMFolderSelectionButton *)emae->priv->drafts_folder_button, emae); uri = mail_component_get_folder_uri(NULL, MAIL_COMPONENT_FOLDER_SENT); em_folder_selection_button_set_selection((EMFolderSelectionButton *)emae->priv->sent_folder_button, uri); + emae_account_folder_changed((EMFolderSelectionButton *)emae->priv->sent_folder_button, emae); } /* custom widget factories */ |