diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-03-09 08:43:35 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-03-09 08:43:35 +0800 |
commit | 97a894dc7d40ebd32073c421a68caf582a1ba770 (patch) | |
tree | 81d790ea58aca2c24504379ce917e3fd59b4bd47 /mail/mail-view.c | |
parent | bc6cd6b9b6edb20bdf96a4e1f907639ec83e3e93 (diff) | |
download | gsoc2013-evolution-97a894dc7d40ebd32073c421a68caf582a1ba770.tar gsoc2013-evolution-97a894dc7d40ebd32073c421a68caf582a1ba770.tar.gz gsoc2013-evolution-97a894dc7d40ebd32073c421a68caf582a1ba770.tar.bz2 gsoc2013-evolution-97a894dc7d40ebd32073c421a68caf582a1ba770.tar.lz gsoc2013-evolution-97a894dc7d40ebd32073c421a68caf582a1ba770.tar.xz gsoc2013-evolution-97a894dc7d40ebd32073c421a68caf582a1ba770.tar.zst gsoc2013-evolution-97a894dc7d40ebd32073c421a68caf582a1ba770.zip |
Set the Forward->Quoted callback. Also set the forward->Attachment
2001-03-08 Jeffrey Stedfast <fejj@ximian.com>
* folder-browser-factory.c: Set the Forward->Quoted callback.
Also set the forward->Attachment callback.
* mail-view.c (view_forward_msg): Specify FORWARD_ATTACHED.
* mail-callbacks.c (forward_attached): Don't call
forward_messages() anymore...never really needed to. Just handle
it directly.
(forward_inlined): Specify FORWARD_INLINE as the flag argument.
(forward_quoted): New function sorta like forward_inlined except
this forwards the message quoted.
* mail-tools.c (mail_tool_forward_message): New function to
prepare a message to be forwarded.
svn path=/trunk/; revision=8611
Diffstat (limited to 'mail/mail-view.c')
-rw-r--r-- | mail/mail-view.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/mail-view.c b/mail/mail-view.c index 320ad9510d..d70c9d4bca 100644 --- a/mail/mail-view.c +++ b/mail/mail-view.c @@ -101,10 +101,10 @@ view_forward_msg (GtkWidget *widget, gpointer user_data) { mail_view_data *data = (mail_view_data *) user_data; GPtrArray *uids; - - uids = g_ptr_array_new(); - g_ptr_array_add(uids, g_strdup (data->uid)); - forward_messages(data->source, uids, FALSE); + + uids = g_ptr_array_new (); + g_ptr_array_add (uids, g_strdup (data->uid)); + forward_messages (data->source, uids, FORWARD_ATTACHED); } static void |