]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathBoldSymbol.cpp
Revert "DocBook: make openParTag/closeTag use paragraphs instead of layouts."
[lyx.git] / src / mathed / InsetMathBoldSymbol.cpp
index 62f8098fa1c1ecf0ed8d8ff6c83cdb8295a6f234..5dbe1fda2859a0e7d0ae12865f0b781b288be64b 100644 (file)
@@ -107,9 +107,11 @@ void InsetMathBoldSymbol::write(WriteStream & os) const
 }
 
 
-void InsetMathBoldSymbol::mathmlize(MathStream & os) const
+void InsetMathBoldSymbol::mathmlize(MathStream & ms) const
 {
-       os << "<mstyle mathvariant='bold'>" << cell(0) << "</mstyle>";
+       ms << "<" << from_ascii(ms.namespacedTag("mstyle")) << " mathvariant='bold'>"
+          << cell(0)
+          << "</" << from_ascii(ms.namespacedTag("mstyle")) << ">";
 }