From: André Pönitz Date: Tue, 21 Oct 2003 16:19:05 +0000 (+0000) Subject: ChangeLog & re-add the {} for "long" blocks.. X-Git-Tag: 1.6.10~15925 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=ddb689a429c948cf063450c92be3d84d7e82248d;p=features.git ChangeLog & re-add the {} for "long" blocks.. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7943 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/ChangeLog b/src/ChangeLog index c2e7649ee1..6cbb3deb1a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,20 @@ + +2003-10-21 André Pönitz + + * 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 * text.C: (1) finish off the inset display() work; diff --git a/src/lyxrow_funcs.C b/src/lyxrow_funcs.C index 035aba648a..e7af3d086f 100644 --- a/src/lyxrow_funcs.C +++ b/src/lyxrow_funcs.C @@ -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;