From: Paul Mangan Date: Fri, 5 Oct 2001 09:37:50 +0000 (+0000) Subject: fix 'Reply to all' X-Git-Tag: Release_0_6_4claws12~81 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=453e9b792854322cbd1ab0ce2bb7b10537758e7b fix 'Reply to all' --- diff --git a/ChangeLog.claws b/ChangeLog.claws index a776b89f2..0603ceb9e 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,8 @@ +2001-10-05 [paul] 0.6.2claws19 + + * src/mainwindow.c, src/summaryview.c + fix 'Message/Reply to all', broken in last commit + 2001-10-04 [paul] 0.6.2claws18 * src/compose.[ch], src/mainwindow.c diff --git a/configure.in b/configure.in index b67846230..71e1e682e 100644 --- a/configure.in +++ b/configure.in @@ -8,7 +8,7 @@ MINOR_VERSION=6 MICRO_VERSION=2 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws18 +EXTRA_VERSION=claws19 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl diff --git a/src/mainwindow.c b/src/mainwindow.c index 63fdb96ec..9b1576ef4 100644 --- a/src/mainwindow.c +++ b/src/mainwindow.c @@ -2441,7 +2441,7 @@ static void reply_cb(MainWindow *mainwin, guint action, GtkWidget *widget) break; case COMPOSE_REPLY_TO_ALL: compose_reply(msginfo, prefs_common.reply_with_quote, - TRUE, FALSE); + TRUE, TRUE); break; case COMPOSE_FORWARD: if (!sel->next) { diff --git a/src/summaryview.c b/src/summaryview.c index 25fd4acd3..7a2cc68e5 100644 --- a/src/summaryview.c +++ b/src/summaryview.c @@ -4117,7 +4117,7 @@ static void summary_reply_cb(SummaryView *summaryview, guint action, break; case COMPOSE_REPLY_TO_ALL: compose_reply(msginfo, prefs_common.reply_with_quote, - TRUE, FALSE); + TRUE, TRUE); break; case COMPOSE_REPLY_TO_ALL_WITH_QUOTE: compose_reply(msginfo, TRUE, TRUE, FALSE);