diff options
author | Veerapuram Varadhan <vvaradan@src.gnome.org> | 2006-02-06 17:16:47 +0800 |
---|---|---|
committer | Veerapuram Varadhan <vvaradan@src.gnome.org> | 2006-02-06 17:16:47 +0800 |
commit | d3c542f07dab7031bb4a14270f3d4cdadee5a4c5 (patch) | |
tree | c673c0e4401345197989231553df83ade4b2dc12 /mail/em-account-editor.c | |
parent | 013339fe4a3ee1f02dac2dd9f32d874014b74abf (diff) | |
download | gsoc2013-evolution-d3c542f07dab7031bb4a14270f3d4cdadee5a4c5.tar.gz gsoc2013-evolution-d3c542f07dab7031bb4a14270f3d4cdadee5a4c5.tar.zst gsoc2013-evolution-d3c542f07dab7031bb4a14270f3d4cdadee5a4c5.zip |
** 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
Diffstat (limited to 'mail/em-account-editor.c')
-rw-r--r-- | mail/em-account-editor.c | 4 |
1 files changed, 3 insertions, 1 deletions
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 */ |