From: Richard Heck Date: Thu, 21 Jan 2010 21:06:44 +0000 (+0000) Subject: Use the attributes MTag now takes. X-Git-Tag: 2.0.0~4275 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=1d6923b65ba0ef94b627fda9e968fff7f37666c1;p=features.git Use the attributes MTag now takes. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33149 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/InsetMathSize.cpp b/src/mathed/InsetMathSize.cpp index e7b78b99e0..e038c7a8f5 100644 --- a/src/mathed/InsetMathSize.cpp +++ b/src/mathed/InsetMathSize.cpp @@ -79,8 +79,8 @@ void InsetMathSize::mathmlize(MathStream & ms) const stringstream attrs; attrs << "displaystyle='" << (dispstyle ? "true" : "false") << "' scriptlevel='" << scriptlevel << "'"; - ms << "" - << cell(0) << ""; + ms << MTag("mstyle", attrs.str()) << ">" + << cell(0) << ETag("mstyle"); }