]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_liminset.C
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / math_liminset.C
index 99bc50191a91cd6a35860375ff6667f2c51991a1..c86c4741fced4a025a6fd5f3275a98a62f8961b2 100644 (file)
@@ -1,13 +1,23 @@
-#ifdef __GNUG__
-#pragma implementation
-#endif
+/**
+ * \file math_liminset.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
+#include <config.h>
 
 #include "math_liminset.h"
-#include "math_support.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
-#include "math_symbolinset.h"
 #include "debug.h"
 
+using std::auto_ptr;
+using std::endl;
+
 
 MathLimInset::MathLimInset
        (MathArray const & f, MathArray const & x, MathArray const & x0)
@@ -19,9 +29,9 @@ MathLimInset::MathLimInset
 }
 
 
-MathInset * MathLimInset::clone() const
+auto_ptr<InsetBase> MathLimInset::doClone() const
 {
-       return new MathLimInset(*this);
+       return auto_ptr<InsetBase>(new MathLimInset(*this));
 }
 
 
@@ -31,25 +41,25 @@ void MathLimInset::normalize(NormalStream & os) const
 }
 
 
-void MathLimInset::metrics(MathMetricsInfo &) const
+void MathLimInset::metrics(MetricsInfo &, Dimension &) const
 {
-       lyxerr << "should not happen\n";
+       lyxerr << "should not happen" << endl;
 }
 
 
-void MathLimInset::draw(MathPainterInfo &, int, int) const
+void MathLimInset::draw(PainterInfo &, int, int) const
 {
-       lyxerr << "should not happen\n";
+       lyxerr << "should not happen" << endl;
 }
 
 
-void MathLimInset::maplize(MapleStream & os) const
+void MathLimInset::maple(MapleStream & os) const
 {
        os << "limit(" << cell(0) << ',' << cell(1) << '=' << cell(2) << ')';
 }
 
 
-void MathLimInset::mathematicize(MathematicaStream & os) const
+void MathLimInset::mathematica(MathematicaStream & os) const
 {
        os << "Lim[" << cell(0) << ',' << cell(1) << ',' << cell(2) << ']';
 }
@@ -63,5 +73,5 @@ void MathLimInset::mathmlize(MathMLStream & os) const
 
 void MathLimInset::write(WriteStream &) const
 {
-       lyxerr << "should not happen\n";
+       lyxerr << "should not happen" << endl;
 }