]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathLim.cpp
Revert r32684, per Andre's suggestion.
[lyx.git] / src / mathed / InsetMathLim.cpp
index 91335f3c3bd329fb101cccb085720e71f443b1c2..a5eae28bb71f4eae1e909c3c7fecd2c452624b46 100644 (file)
@@ -12,7 +12,6 @@
 
 #include "InsetMathLim.h"
 #include "MathData.h"
-#include "MathExtern.h"
 #include "MathStream.h"
 
 #include "support/debug.h"
@@ -72,16 +71,13 @@ void InsetMathLim::mathematica(MathematicaStream & os) const
 }
 
 
-docstring      InsetMathLim::mathmlize(MathStream & os) const
+void InsetMathLim::mathmlize(MathStream & os) const
 {
        // FIXME XHTML We need a form of MTag that takes attributes.
        os << "<munder>"
           << "<mo form='prefix'>" << "lim" << "</mo>"
-                << "<mrow>" << cell(1) << "<mo>&rarr;</mo>" << cell(2)
-                << "</mrow></munder>" << "<mo>(</mo>";
-       docstring const rv = lyx::mathmlize(cell(0), os);
-       os << "<mo>)</mo>";
-       return rv;
+          << "<mrow>" << cell(1) << "<mo>&rarr;</mo>" << cell(2) << "</mrow></munder>"
+          << "<mo>(</mo>" << cell(0) << "<mo>)</mo>" ; 
 }