diff options
author | Dan Winship <danw@src.gnome.org> | 2000-08-11 02:43:46 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-08-11 02:43:46 +0800 |
commit | 0ad5aaea8088200992598ee3be8b41416b0bee33 (patch) | |
tree | 8e0b88f6c09db4c3ac951a8aac379e2bc3994551 | |
parent | 9eebb1486e027a709085bdd95b90805a7f38c303 (diff) | |
download | gsoc2013-evolution-0ad5aaea8088200992598ee3be8b41416b0bee33.tar gsoc2013-evolution-0ad5aaea8088200992598ee3be8b41416b0bee33.tar.gz gsoc2013-evolution-0ad5aaea8088200992598ee3be8b41416b0bee33.tar.bz2 gsoc2013-evolution-0ad5aaea8088200992598ee3be8b41416b0bee33.tar.lz gsoc2013-evolution-0ad5aaea8088200992598ee3be8b41416b0bee33.tar.xz gsoc2013-evolution-0ad5aaea8088200992598ee3be8b41416b0bee33.tar.zst gsoc2013-evolution-0ad5aaea8088200992598ee3be8b41416b0bee33.zip |
Fix a bug in the async changes. (This was identical to reply_to_sender.)
* mail-callbacks.c (reply_to_all): Fix a bug in the async changes.
(This was identical to reply_to_sender.)
svn path=/trunk/; revision=4694
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-callbacks.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 17591f38f1..0b40c4553f 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2000-08-10 Dan Winship <danw@helixcode.com> + + * mail-callbacks.c (reply_to_all): Fix a bug in the async changes. + (This was identical to reply_to_sender.) + 2000-08-10 Not Zed <NotZed@HelixCode.com> * mail-local.c (do_local_reconfigure_folder): Update for diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c index 7ffb7dc870..b12f148062 100644 --- a/mail/mail-callbacks.c +++ b/mail/mail-callbacks.c @@ -320,7 +320,7 @@ reply_to_all (GtkWidget *widget, gpointer user_data) FolderBrowser *fb = FOLDER_BROWSER (user_data); mail_reply (fb->folder, fb->mail_display->current_message, - fb->message_list->cursor_uid, FALSE); + fb->message_list->cursor_uid, TRUE); } static void |