]> git.lyx.org Git - lyx.git/blobdiff - src/tabular.C
Fix #1736
[lyx.git] / src / tabular.C
index b8957c2ba2a6723a7c369b3bb4d9120c75b78144..34f3e1927379452a96c06c1901b22a470dd5a9e2 100644 (file)
@@ -2215,9 +2215,7 @@ int LyXTabular::docbookRow(Buffer const & buf, ostream & os, int row,
                }
 
                os << '>';
-               OutputParams runp = runparams;
-               runp.mixed_content = true;
-               ret += getCellInset(cell).docbook(buf, os, runp);
+               ret += getCellInset(cell).docbook(buf, os, runparams);
                os << "</entry>\n";
                ++cell;
        }
@@ -2341,7 +2339,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);