aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-accounts.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2001-01-08 10:14:23 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-01-08 10:14:23 +0800
commit35139b298329ba21d3b645aa0891863bc7caaf68 (patch)
tree7ab9fed11b5efc991f6288c860a9bf908b0c963c /mail/mail-accounts.h
parenta223b88a9034f0c33f2e979403e1352ff822f8a2 (diff)
downloadgsoc2013-evolution-35139b298329ba21d3b645aa0891863bc7caaf68.tar
gsoc2013-evolution-35139b298329ba21d3b645aa0891863bc7caaf68.tar.gz
gsoc2013-evolution-35139b298329ba21d3b645aa0891863bc7caaf68.tar.bz2
gsoc2013-evolution-35139b298329ba21d3b645aa0891863bc7caaf68.tar.lz
gsoc2013-evolution-35139b298329ba21d3b645aa0891863bc7caaf68.tar.xz
gsoc2013-evolution-35139b298329ba21d3b645aa0891863bc7caaf68.tar.zst
gsoc2013-evolution-35139b298329ba21d3b645aa0891863bc7caaf68.zip
Updated to reflect changes to the mail-config API.
2001-01-07 Jeffrey Stedfast <fejj@helixcode.com> * mail-tools.c (mail_tool_quote_message): Updated to reflect changes to the mail-config API. * mail-display.c (redisplay): Updated to reflect changes to the mail-config API. * mail-callbacks.c (providers_config): Use the new account dialog. * mail-config-druid.c (druid_finish): Load the new storage into the shell. (mail_config_druid_new): Take a shell argument. * mail-format.c (mail_generate_reply): Updated to reflect changes to the mail-config API. * mail-config-druid.c: Fixed this to build. * 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=7298
Diffstat (limited to 'mail/mail-accounts.h')
-rw-r--r--mail/mail-accounts.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/mail/mail-accounts.h b/mail/mail-accounts.h
index b87d77e7f1..86dd7a42ea 100644
--- a/mail/mail-accounts.h
+++ b/mail/mail-accounts.h
@@ -31,6 +31,7 @@ extern "C" {
#include <gnome.h>
#include <glade/glade.h>
#include <camel.h>
+#include "shell/Evolution.h"
#define MAIL_ACCOUNTS_DIALOG_TYPE (mail_accounts_dialog_get_type ())
#define MAIL_ACCOUNTS_DIALOG(o) (GTK_CHECK_CAST ((o), MAIL_ACCOUNTS_DIALOG_TYPE, MailAccountsDialog))
@@ -41,6 +42,8 @@ extern "C" {
struct _MailAccountsDialog {
GnomeDialog parent;
+ GNOME_Evolution_Shell shell;
+
GladeXML *gui;
const GSList *accounts;
@@ -72,7 +75,7 @@ typedef struct {
GtkType mail_accounts_dialog_get_type (void);
-MailAccountsDialog *mail_accounts_dialog_new (void);
+MailAccountsDialog *mail_accounts_dialog_new (GNOME_Evolution_Shell shell);
#ifdef __cplusplus
}