mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
ChangeLog & re-add the {} for "long" blocks..
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7943 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
5c3d9a2546
commit
ddb689a429
@ -1,3 +1,20 @@
|
||||
|
||||
2003-10-21 André Pönitz <poenitz@gmx.net>
|
||||
|
||||
* FuncStatus.[Ch]: small stuff, whitespace
|
||||
|
||||
* lyxfont.[Ch]: operator<<() for debug reasons
|
||||
|
||||
* lyxfunc.C:
|
||||
* lyxrow_funcs.C:
|
||||
* lyxtext.h: whitespace, spelling
|
||||
|
||||
* paragraph.C: naming of variables
|
||||
|
||||
* text.C:
|
||||
* text2.C: small stuff
|
||||
|
||||
|
||||
2003-10-21 Martin Vermeer <martin.vermeer@hut.fi>
|
||||
|
||||
* text.C: (1) finish off the inset display() work;
|
||||
|
@ -61,9 +61,10 @@ int numberOfHfills(Paragraph const & par, Row const & row)
|
||||
pos_type first = row.pos();
|
||||
|
||||
// hfill *DO* count at the beginning of paragraphs!
|
||||
if (first)
|
||||
if (first) {
|
||||
while (first < last && par.isHfill(first))
|
||||
++first;
|
||||
}
|
||||
|
||||
first = max(first, par.beginningOfBody());
|
||||
|
||||
@ -87,9 +88,10 @@ int numberOfLabelHfills(Paragraph const & par, Row const & row)
|
||||
pos_type first = row.pos();
|
||||
|
||||
// hfill *DO* count at the beginning of paragraphs!
|
||||
if (first)
|
||||
if (first) {
|
||||
while (first < last && par.isHfill(first))
|
||||
++first;
|
||||
}
|
||||
|
||||
last = min(last, par.beginningOfBody());
|
||||
int n = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user