Fix delimiters.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31988 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2009-11-14 20:18:32 +00:00
parent 177ff11cfb
commit 963c22353a

View File

@ -163,8 +163,8 @@ void InsetMathDelim::mathematica(MathematicaStream & os) const
void InsetMathDelim::mathmlize(MathStream & os) const
{
os << "<fenced open=\"" << left_ << "\" close=\""
<< right_ << "\">" << cell(0) << "</fenced>";
os << "<mfenced open=\"" << left_ << "\" close=\""
<< right_ << "\">" << cell(0) << "</mfenced>";
}