aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-view.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-09-19 23:35:40 +0800
committerDan Winship <danw@src.gnome.org>2000-09-19 23:35:40 +0800
commit053af645da6e5f74474d13c19ce73d236d9b76a9 (patch)
tree1ebbe95f9fcefc904dddde9faa0aea3a03391a82 /mail/mail-view.c
parentc09bcfdc4332454675f3ee5bb070f5cd702a065e (diff)
downloadgsoc2013-evolution-053af645da6e5f74474d13c19ce73d236d9b76a9.tar
gsoc2013-evolution-053af645da6e5f74474d13c19ce73d236d9b76a9.tar.gz
gsoc2013-evolution-053af645da6e5f74474d13c19ce73d236d9b76a9.tar.bz2
gsoc2013-evolution-053af645da6e5f74474d13c19ce73d236d9b76a9.tar.lz
gsoc2013-evolution-053af645da6e5f74474d13c19ce73d236d9b76a9.tar.xz
gsoc2013-evolution-053af645da6e5f74474d13c19ce73d236d9b76a9.tar.zst
gsoc2013-evolution-053af645da6e5f74474d13c19ce73d236d9b76a9.zip
Deal with NULL composer.
* mail-callbacks.c (create_msg_composer, compose_msg, send_to_url, mail_reply, forward_msg): * mail-format.c (mail_generate_reply): * mail-ops.c (cleanup_edit_messages): * mail-view.c (view_forward_msg): Deal with NULL composer. svn path=/trunk/; revision=5502
Diffstat (limited to 'mail/mail-view.c')
-rw-r--r--mail/mail-view.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/mail/mail-view.c b/mail/mail-view.c
index bbdfa87545..45cd4090fa 100644
--- a/mail/mail-view.c
+++ b/mail/mail-view.c
@@ -102,10 +102,13 @@ view_forward_msg (GtkWidget *widget, gpointer user_data)
GPtrArray *uids;
EMsgComposer *composer;
+ composer = e_msg_composer_new ();
+ if (!composer)
+ return;
+
uids = g_ptr_array_new();
g_ptr_array_add (uids, g_strdup (data->uid));
- composer = E_MSG_COMPOSER (e_msg_composer_new ());
gtk_signal_connect (GTK_OBJECT (composer), "send",
GTK_SIGNAL_FUNC (composer_send_cb), NULL);