Use the attributes MTag now takes.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33149 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-01-21 21:06:44 +00:00
parent 7a32a8489a
commit 1d6923b65b

View File

@ -79,8 +79,8 @@ void InsetMathSize::mathmlize(MathStream & ms) const
stringstream attrs;
attrs << "displaystyle='" << (dispstyle ? "true" : "false")
<< "' scriptlevel='" << scriptlevel << "'";
ms << "<mstyle " << from_ascii(attrs.str()) << ">"
<< cell(0) << "</mstyle>";
ms << MTag("mstyle", attrs.str()) << ">"
<< cell(0) << ETag("mstyle");
}