mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
Recommit Peter's commit from rev 16444. svn commit did not complain...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16452 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
97a59984b1
commit
79d7691614
@ -84,16 +84,18 @@ int numberOfLabelHfills(Paragraph const & par, Row const & row)
|
|||||||
|
|
||||||
int numberOfHfills(Paragraph const & par, Row const & row)
|
int numberOfHfills(Paragraph const & par, Row const & row)
|
||||||
{
|
{
|
||||||
pos_type const last = row.endpos();
|
pos_type last = row.endpos();
|
||||||
pos_type first = row.pos();
|
pos_type first = row.pos();
|
||||||
|
pos_type const par_size = par.size();
|
||||||
|
|
||||||
// hfill *DO* count at the beginning of paragraphs!
|
// hfill *DO* count at the beginning of paragraphs!
|
||||||
if (first) {
|
if (first) {
|
||||||
while (first < last && par.isHfill(first))
|
while (first < last && first < par_size && par.isHfill(first))
|
||||||
++first;
|
++first;
|
||||||
}
|
}
|
||||||
|
|
||||||
first = max(first, par.beginOfBody());
|
first = max(first, par.beginOfBody());
|
||||||
|
last = min(last, par_size);
|
||||||
|
|
||||||
int n = 0;
|
int n = 0;
|
||||||
for (pos_type p = first; p < last; ++p) {
|
for (pos_type p = first; p < last; ++p) {
|
||||||
|
Loading…
Reference in New Issue
Block a user