]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathLim.cpp
Do not warn about changed modules when changing modules.
[lyx.git] / src / mathed / InsetMathLim.cpp
index 53de8889505a5585316ea43c81de82e543452c9b..9c042beba8cc41c48b5e87fccb59e3c18cadd85f 100644 (file)
@@ -3,7 +3,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -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,12 +71,6 @@ 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
 {
        LYXERR0("should not happen");