From 1d6923b65ba0ef94b627fda9e968fff7f37666c1 Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Thu, 21 Jan 2010 21:06:44 +0000 Subject: [PATCH] Use the attributes MTag now takes. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33149 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/InsetMathSize.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"); } -- 2.39.2