]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathDelim.cpp
We only support gcc >= 4.9.
[lyx.git] / src / mathed / InsetMathDelim.cpp
index 11a47d139f4c30b153db5f6616c59a86f5140bc4..e97e12c04e217ab935d1b6951c0936d106e9b0a8 100644 (file)
@@ -74,7 +74,7 @@ void InsetMathDelim::validate(LaTeXFeatures & features) const
 }
 
 
-void InsetMathDelim::write(WriteStream & os) const
+void InsetMathDelim::write(TeXMathStream & os) const
 {
        MathEnsurer ensurer(os);
        os << "\\left" << convertDelimToLatexName(left_) << cell(0)
@@ -179,9 +179,10 @@ void InsetMathDelim::mathematica(MathematicaStream & os) const
 }
 
 
-void InsetMathDelim::mathmlize(MathStream & ms) const
+void InsetMathDelim::mathmlize(MathMLStream & ms) const
 {
-       ms << "<" << from_ascii(ms.namespacedTag("mo")) << " form='prefix' fence='true' stretchy='true' symmetric='true'>"
+       ms << "<" << from_ascii(ms.namespacedTag("mrow")) << ">" << "\n"
+          << "<" << from_ascii(ms.namespacedTag("mo")) << " form='prefix' fence='true' stretchy='true' symmetric='true'>"
           << convertDelimToXMLEscape(left_, ms.xmlMode())
           << "</" << from_ascii(ms.namespacedTag("mo")) << ">"
           << "\n"
@@ -189,8 +190,8 @@ void InsetMathDelim::mathmlize(MathStream & ms) const
           << "\n"
           << "<" << from_ascii(ms.namespacedTag("mo")) << " form='postfix' fence='true' stretchy='true' symmetric='true'>"
           << convertDelimToXMLEscape(right_, ms.xmlMode())
-          << "</" << from_ascii(ms.namespacedTag("mo")) << ">"
-          << "\n";
+          << "</" << from_ascii(ms.namespacedTag("mo")) << ">" << "\n"
+          << "</" << from_ascii(ms.namespacedTag("mrow")) << ">" << "\n";
 }