From 17225a683cc6f27337164c1c37714bb742e629fb Mon Sep 17 00:00:00 2001 From: Christoph Hohmann Date: Mon, 3 Mar 2003 21:18:24 +0000 Subject: [PATCH 1/1] 0.8.10claws78 * src/news.c fix calculation of expected lines for progress indicator --- ChangeLog.claws | 5 +++++ configure.ac | 2 +- src/news.c | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog.claws b/ChangeLog.claws index dfcedc54a..208d8b54e 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,8 @@ +2003-03-03 [christoph] 0.8.10claws78 + + * src/news.c + fix calculation of expected lines for progress indicator + 2003-03-03 [christoph] 0.8.10claws77 * src/summaryview.c diff --git a/configure.ac b/configure.ac index e334ba2ac..3ebfb4afd 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=8 MICRO_VERSION=10 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws77 +EXTRA_VERSION=claws78 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/news.c b/src/news.c index 54b519d05..c4dc09b57 100644 --- a/src/news.c +++ b/src/news.c @@ -900,7 +900,7 @@ static GSList *news_get_msginfos_for_range(NNTPSession *session, FolderItem *ite GSList *newlist = NULL; GSList *llast = NULL; MsgInfo *msginfo; - guint count = 0, lines = (end - begin + 1) * 3; + guint count = 0, lines = (end - begin + 2) * 3; g_return_val_if_fail(session != NULL, NULL); g_return_val_if_fail(item != NULL, NULL); -- 2.25.1