aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-accounts.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2001-01-08 07:12:11 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-01-08 07:12:11 +0800
commitd53b9af629fcf4b77417edb0e4207fb1e2f28e0f (patch)
treed1f70954ab61f553b25e1c3c04e6c161afae28bd /mail/mail-accounts.h
parent41f38d962e5192f5d0c168042a4f078cd84ac184 (diff)
downloadgsoc2013-evolution-d53b9af629fcf4b77417edb0e4207fb1e2f28e0f.tar
gsoc2013-evolution-d53b9af629fcf4b77417edb0e4207fb1e2f28e0f.tar.gz
gsoc2013-evolution-d53b9af629fcf4b77417edb0e4207fb1e2f28e0f.tar.bz2
gsoc2013-evolution-d53b9af629fcf4b77417edb0e4207fb1e2f28e0f.tar.lz
gsoc2013-evolution-d53b9af629fcf4b77417edb0e4207fb1e2f28e0f.tar.xz
gsoc2013-evolution-d53b9af629fcf4b77417edb0e4207fb1e2f28e0f.tar.zst
gsoc2013-evolution-d53b9af629fcf4b77417edb0e4207fb1e2f28e0f.zip
Updated to reflect changes to the mail-config API. (create_msg_composer):
2001-01-07 Jeffrey Stedfast <fejj@helixcode.com> * mail-callbacks.c (check_send_configuration): Updated to reflect changes to the mail-config API. (create_msg_composer): Same. (forward_get_composer): Same. (send_queued_mail): Same. (composer_send_cb): Same. * mail-account-editor.c: Updated to build cleanly. * mail-config-druid.c: Same. * mail-accounts.c: Same. * folder-browser-factory.c (control_activate): Updated for API changes in mail-config. * folder-browser.c (done_message_selected): Updated for API changed in mail-config. (folder_browser_gui_init): Same. (got_folder): Same. * component-factory.c (owner_set_cb): After using the sources list, free it as it is no longer a const GSList as with the older mail-config code. * mail-config.c: Totally rewritten. svn path=/trunk/; revision=7294
Diffstat (limited to 'mail/mail-accounts.h')
-rw-r--r--mail/mail-accounts.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/mail/mail-accounts.h b/mail/mail-accounts.h
index 9de7ec0f98..b87d77e7f1 100644
--- a/mail/mail-accounts.h
+++ b/mail/mail-accounts.h
@@ -43,15 +43,19 @@ struct _MailAccountsDialog {
GladeXML *gui;
- const GList *accounts;
- GtkClist *mail_accounts;
+ const GSList *accounts;
+ gint accounts_row;
+
+ GtkCList *mail_accounts;
GtkButton *mail_add;
GtkButton *mail_edit;
GtkButton *mail_delete;
GtkButton *mail_default;
- const GList *news;
- GtkClist *news_accounts;
+ const GSList *news;
+ gint news_row;
+
+ GtkCList *news_accounts;
GtkButton *news_add;
GtkButton *news_edit;
GtkButton *news_delete;