X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathBoldSymbol.cpp;h=5dbe1fda2859a0e7d0ae12865f0b781b288be64b;hb=21c92c8a129b5f3ff56de33bf2941a25967cffbb;hp=62f8098fa1c1ecf0ed8d8ff6c83cdb8295a6f234;hpb=ce8929e9b237af569934b434154d199634363268;p=lyx.git diff --git a/src/mathed/InsetMathBoldSymbol.cpp b/src/mathed/InsetMathBoldSymbol.cpp index 62f8098fa1..5dbe1fda28 100644 --- a/src/mathed/InsetMathBoldSymbol.cpp +++ b/src/mathed/InsetMathBoldSymbol.cpp @@ -107,9 +107,11 @@ void InsetMathBoldSymbol::write(WriteStream & os) const } -void InsetMathBoldSymbol::mathmlize(MathStream & os) const +void InsetMathBoldSymbol::mathmlize(MathStream & ms) const { - os << "" << cell(0) << ""; + ms << "<" << from_ascii(ms.namespacedTag("mstyle")) << " mathvariant='bold'>" + << cell(0) + << ""; }