]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathLim.cpp
We only support gcc >= 4.9.
[lyx.git] / src / mathed / InsetMathLim.cpp
index 508acc237e6c0daf17e4e8ef0a7371e9dbb36e7a..98d307410fbc4919d55f38772ecd6792d7ac33c3 100644 (file)
@@ -19,9 +19,9 @@
 
 namespace lyx {
 
-InsetMathLim::InsetMathLim
-       (MathData const & f, MathData const & x, MathData const & x0)
-       : InsetMathNest(3)
+InsetMathLim::InsetMathLim(Buffer * buf, MathData const & f, MathData const & x,
+       MathData const & x0)
+       : InsetMathNest(buf, 3)
 {
        cell(0) = f;
        cell(1) = x;
@@ -71,13 +71,7 @@ void InsetMathLim::mathematica(MathematicaStream & os) const
 }
 
 
-void InsetMathLim::mathmlize(MathStream & os) const
-{
-       os << "lim(" << cell(0) << ',' << cell(1) << ',' << cell(2) << ')';
-}
-
-
-void InsetMathLim::write(WriteStream &) const
+void InsetMathLim::write(TeXMathStream &) const
 {
        LYXERR0("should not happen");
 }