aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVeerapuram Varadhan <vvaradan@src.gnome.org>2006-02-06 17:16:47 +0800
committerVeerapuram Varadhan <vvaradan@src.gnome.org>2006-02-06 17:16:47 +0800
commitd3c542f07dab7031bb4a14270f3d4cdadee5a4c5 (patch)
treec673c0e4401345197989231553df83ade4b2dc12
parent013339fe4a3ee1f02dac2dd9f32d874014b74abf (diff)
downloadgsoc2013-evolution-d3c542f07dab7031bb4a14270f3d4cdadee5a4c5.tar
gsoc2013-evolution-d3c542f07dab7031bb4a14270f3d4cdadee5a4c5.tar.gz
gsoc2013-evolution-d3c542f07dab7031bb4a14270f3d4cdadee5a4c5.tar.bz2
gsoc2013-evolution-d3c542f07dab7031bb4a14270f3d4cdadee5a4c5.tar.lz
gsoc2013-evolution-d3c542f07dab7031bb4a14270f3d4cdadee5a4c5.tar.xz
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
-rw-r--r--mail/ChangeLog6
-rw-r--r--mail/em-account-editor.c4
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 */