]> git.lyx.org Git - lyx.git/blobdiff - src/tabular.C
and this
[lyx.git] / src / tabular.C
index 87e8e09edab5303f923761a2ee6e772038717f5e..760a827d909deceab4d22cc2b5fdab5734536ef3 100644 (file)
@@ -1126,7 +1126,7 @@ void LyXTabular::write(Buffer const & buf, ostream & os) const
                           << ">\n";
                        os << "\\begin_inset ";
                        cell_info[i][j].inset.write(buf, os);
-                       os << "\n\\end_inset \n"
+                       os << "\n\\end_inset\n"
                           << "</cell>\n";
                }
                os << "</row>\n";
@@ -2341,7 +2341,7 @@ int LyXTabular::asciiTopHLine(ostream & os, int row,
                }
                int column = column_of_cell(i);
                int len = clen[column];
-               while (column < columns_ - 1  
+               while (column < columns_ - 1
                       && isPartOfMultiColumn(row, ++column))
                        len += clen[column] + 4;
                os << string(len, ch);