From: Peter Kümmel Date: Thu, 4 Jan 2007 19:46:03 +0000 (+0000) Subject: undo partly 16444/16452 X-Git-Tag: 1.6.10~11345 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=1f83a88cd65f800100e051f058231b5d0e31315e;p=lyx.git undo partly 16444/16452 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16512 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/TextMetrics.C b/src/TextMetrics.C index 9b9876d3b7..85a90529b6 100644 --- a/src/TextMetrics.C +++ b/src/TextMetrics.C @@ -85,18 +85,16 @@ int numberOfLabelHfills(Paragraph const & par, Row const & row) int numberOfHfills(Paragraph const & par, Row const & row) { - pos_type last = row.endpos(); + pos_type const last = row.endpos(); pos_type first = row.pos(); - pos_type const par_size = par.size(); // hfill *DO* count at the beginning of paragraphs! if (first) { - while (first < last && first < par_size && par.isHfill(first)) + while (first < last && par.isHfill(first)) ++first; } first = max(first, par.beginOfBody()); - last = min(last, par_size); int n = 0; for (pos_type p = first; p < last; ++p) {