]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathDiff.cpp
Fixup 89662a68: remove markers that should not be there
[lyx.git] / src / mathed / InsetMathDiff.cpp
index f044ab8f15db1f826f5e660e7f56d5a7230739bc..9052d8999ba1541b1632ccb7be67ecadb71ee948 100644 (file)
@@ -12,7 +12,6 @@
 
 #include "InsetMathDiff.h"
 #include "MathData.h"
-#include "MathExtern.h"
 #include "MathStream.h"
 
 #include "support/debug.h"
@@ -96,20 +95,6 @@ void InsetMathDiff::mathematica(MathematicaStream & os) const
 }
 
 
-docstring InsetMathDiff::mathmlize(MathStream & os) const
-{
-       os << "diff(";
-       docstring rv;
-       for (idx_type idx = 0; idx < nargs(); ++idx) {
-               if (idx != 0)
-                       os << ',';
-               rv += lyx::mathmlize(cell(idx), os);
-       }
-       os << ')';
-       return rv;
-}
-
-
 void InsetMathDiff::write(WriteStream &) const
 {
        LYXERR0("should not happen");