aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-accounts.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2003-02-25 22:49:58 +0800
committerDan Winship <danw@src.gnome.org>2003-02-25 22:49:58 +0800
commit17d13191decae2957d0b24f4d014de46828f5157 (patch)
tree25d3928b22f7213c8ba26e19586cd6eb32f3b9a7 /mail/mail-accounts.c
parent7a0f761f14926e2b4454e05829ae4a27d9160a34 (diff)
downloadgsoc2013-evolution-17d13191decae2957d0b24f4d014de46828f5157.tar
gsoc2013-evolution-17d13191decae2957d0b24f4d014de46828f5157.tar.gz
gsoc2013-evolution-17d13191decae2957d0b24f4d014de46828f5157.tar.bz2
gsoc2013-evolution-17d13191decae2957d0b24f4d014de46828f5157.tar.lz
gsoc2013-evolution-17d13191decae2957d0b24f4d014de46828f5157.tar.xz
gsoc2013-evolution-17d13191decae2957d0b24f4d014de46828f5157.tar.zst
gsoc2013-evolution-17d13191decae2957d0b24f4d014de46828f5157.zip
Redo this to not use the CORBA interfaces in the local case (in
* mail-config-druid.c: Redo this to not use the CORBA interfaces in the local case (in preparation for redoing the CORBA interfaces). (mail_config_druid_new): Remove unused "shell" arg * mail-account-gui.c (mail_account_gui_transport_complete): Don't crash if there's no transport selected at all. (mail_account_gui_new): Don't try to set cc_addrs/bcc_addrs if they're NULL. * mail-accounts.c (account_add_clicked): Don't need to pass shell to mail_config_druid_new. * mail-callbacks.c (configure_mail): Don't need to pass shell to mail_config_druid_new. svn path=/trunk/; revision=20051
Diffstat (limited to 'mail/mail-accounts.c')
-rw-r--r--mail/mail-accounts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-accounts.c b/mail/mail-accounts.c
index 154a092c13..fd332afb1a 100644
--- a/mail/mail-accounts.c
+++ b/mail/mail-accounts.c
@@ -145,7 +145,7 @@ account_add_clicked (GtkButton *button, gpointer user_data)
MailAccountsTab *prefs = (MailAccountsTab *) user_data;
if (prefs->druid == NULL) {
- prefs->druid = (GtkWidget *) mail_config_druid_new (prefs->shell);
+ prefs->druid = (GtkWidget *) mail_config_druid_new ();
g_object_weak_ref ((GObject *) prefs->druid,
(GWeakNotify) account_add_finished, prefs);