Call to textrow.start after a multi-line inset.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2817 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Dekel Tsur 2001-09-29 22:22:01 +00:00
parent 88c555f798
commit 708b299287
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2001-09-29 Dekel Tsur <dekelts@tau.ac.il>
* paragraph_pimpl.C (simpleTeXSpecialChars): Call to textrow.start
after a multi-line inset.
2001-09-28 Dekel Tsur <dekelts@tau.ac.il>
* paragraph.C (validate): Set NeedLyXFootnoteCode

View File

@ -284,13 +284,14 @@ void Paragraph::Pimpl::simpleTeXSpecialChars(Buffer const * buf,
os << "}";
if (tmp) {
for (int j = 0; j < tmp; ++j) {
texrow.newline();
}
texrow.start(owner_, i + 1);
column = 0;
} else {
column += int(os.tellp()) - len;
}
for (; tmp--;) {
texrow.newline();
}
}
}
break;