]> git.lyx.org Git - features.git/commitdiff
ChangeLog & re-add the {} for "long" blocks..
authorAndré Pönitz <poenitz@gmx.net>
Tue, 21 Oct 2003 16:19:05 +0000 (16:19 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Tue, 21 Oct 2003 16:19:05 +0000 (16:19 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7943 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/lyxrow_funcs.C

index c2e7649ee13be0a8fef638a6a93a1f752fedcc48..6cbb3deb1a4edb1c7ba79168f5aead1d8f327c50 100644 (file)
@@ -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;
index 035aba648ac73dd35b11f09b71ea975fa0abb680..e7af3d086fa557af4a56c55700e8efb9b65df7db 100644 (file)
@@ -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;