mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-26 11:16:55 +00:00
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:
parent
7a32a8489a
commit
1d6923b65b
@ -79,8 +79,8 @@ void InsetMathSize::mathmlize(MathStream & ms) const
|
|||||||
stringstream attrs;
|
stringstream attrs;
|
||||||
attrs << "displaystyle='" << (dispstyle ? "true" : "false")
|
attrs << "displaystyle='" << (dispstyle ? "true" : "false")
|
||||||
<< "' scriptlevel='" << scriptlevel << "'";
|
<< "' scriptlevel='" << scriptlevel << "'";
|
||||||
ms << "<mstyle " << from_ascii(attrs.str()) << ">"
|
ms << MTag("mstyle", attrs.str()) << ">"
|
||||||
<< cell(0) << "</mstyle>";
|
<< cell(0) << ETag("mstyle");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user