]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathBoldSymbol.cpp
typo
[lyx.git] / src / mathed / InsetMathBoldSymbol.cpp
index 7b6932b8de425e66582f669dfbcbe73f9574c7fb..a0651ea52e0908d4e5a7c99ed3fd94337d97ab42 100644 (file)
@@ -90,7 +90,7 @@ void InsetMathBoldSymbol::validate(LaTeXFeatures & features) const
 }
 
 
-void InsetMathBoldSymbol::write(WriteStream & os) const
+void InsetMathBoldSymbol::write(TeXMathStream & os) const
 {
        MathEnsurer ensurer(os);
        switch (kind_) {
@@ -109,9 +109,9 @@ void InsetMathBoldSymbol::write(WriteStream & os) const
 
 void InsetMathBoldSymbol::mathmlize(MathMLStream & ms) const
 {
-       ms << "<" << from_ascii(ms.namespacedTag("mstyle")) << " mathvariant='bold'>"
+       ms << MTagInline("mstyle", "mathvariant='bold'>")
           << cell(0)
-          << "</" << from_ascii(ms.namespacedTag("mstyle")) << ">";
+          << ETagInline("mstyle");
 }