aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-callbacks.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-callbacks.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-callbacks.c')
-rw-r--r--mail/mail-callbacks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c
index 5888673c8b..14e21e7d46 100644
--- a/mail/mail-callbacks.c
+++ b/mail/mail-callbacks.c
@@ -192,7 +192,7 @@ configure_mail (FolderBrowser *fb)
"You need to do this before you can send,\n"
"receive or compose mail.\n"
"Would you like to configure it now?"))) {
- druid = mail_config_druid_new (fb->shell);
+ druid = mail_config_druid_new ();
g_object_weak_ref ((GObject *) druid, (GWeakNotify) druid_destroy_cb, NULL);
gtk_widget_show ((GtkWidget *) druid);
gtk_grab_add ((GtkWidget *) druid);