From d3c542f07dab7031bb4a14270f3d4cdadee5a4c5 Mon Sep 17 00:00:00 2001 From: Veerapuram Varadhan Date: Mon, 6 Feb 2006 09:16:47 +0000 Subject: ** Fixes #326147 Modify e_source to reflect to the reverted changes. ** Fixes #326147 * em-account-editor.c: (em_account-editor.c): Modify e_source to reflect to the reverted changes. svn path=/trunk/; revision=31420 --- mail/em-account-editor.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'mail/em-account-editor.c') 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 */ -- cgit