diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-05-03 03:34:56 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-05-03 03:37:22 +0800 |
commit | 7b4a69edc4a67445ae11c77135772934e4d380a2 (patch) | |
tree | f517e23ec707381611252fb3e611139f9b4fa8e5 /mail/em-config.h | |
parent | 74f86383fce61cd6712804f39a1baf011d59729a (diff) | |
download | gsoc2013-evolution-7b4a69edc4a67445ae11c77135772934e4d380a2.tar.gz gsoc2013-evolution-7b4a69edc4a67445ae11c77135772934e4d380a2.tar.zst gsoc2013-evolution-7b4a69edc4a67445ae11c77135772934e4d380a2.zip |
EMConfigTargetAccount: Add original_account member.
Rename the existing 'account' member to 'modified_account' and add an
'original_account' member so plugins have direct access to both.
Mostly of benefit to the imap-features plugin.
Diffstat (limited to 'mail/em-config.h')
-rw-r--r-- | mail/em-config.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/em-config.h b/mail/em-config.h index bd39a4702c..f52dcf8714 100644 --- a/mail/em-config.h +++ b/mail/em-config.h @@ -64,9 +64,8 @@ struct _EMConfigTargetPrefs { struct _EMConfigTargetAccount { EConfigTarget target; - EAccount *account; - /* Need also: working account, not just real account, so changes can be propagated around - And some mechamism for controlling the gui if we're running inside an assistant, e.g. enabling 'next' */ + EAccount *original_account; + EAccount *modified_account; }; typedef struct _EConfigItem EMConfigItem; @@ -92,7 +91,8 @@ EMConfigTargetPrefs * GConfClient *gconf); EMConfigTargetAccount * em_config_target_new_account (EMConfig *emp, - EAccount *account); + EAccount *original_account, + EAccount *modified_account); G_END_DECLS |