Fix reference to CDATA. (docbook)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9146 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
José Matox 2004-10-30 18:08:19 +00:00
parent 595dc950ec
commit 7c4c456090
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-10-30 José Matos <jamatos@lyx.org>
* paragraph.C (simpleDocBookOnePar): fix reference to CDATA.
2004-10-30 José Matos <jamatos@lyx.org>
* output_docbook.C (makeParagraphs):

View File

@ -1410,7 +1410,7 @@ void Paragraph::simpleDocBookOnePar(Buffer const & buf,
LyXFont font_old =
style->labeltype == LABEL_MANUAL ? style->labelfont : style->font;
bool cdata = (style->latexparam() == "CDATA");
bool cdata = (style->innertag() == "CDATA");
// parsing main loop
for (pos_type i = initial; i < size(); ++i) {
LyXFont font = getFont(buf.params(), i, outerfont);