]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_exintinset.C
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / math_exintinset.C
index d9f7a982a971eedb5ddf4aacffab2c6c9aeb8573..bd4afb918a8c1c933056fbdd26419a6981656855 100644 (file)
@@ -1,7 +1,17 @@
+/**
+ * \file math_exintinset.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_exintinset.h"
-#include "math_support.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
 #include "math_symbolinset.h"
@@ -9,7 +19,10 @@
 
 #include <boost/scoped_ptr.hpp>
 
+
+using std::string;
 using std::auto_ptr;
+using std::endl;
 
 
 MathExIntInset::MathExIntInset(string const & name)
@@ -22,7 +35,7 @@ MathExIntInset::MathExIntInset(string const & name)
 // 3 - upper
 
 
-auto_ptr<InsetBase> MathExIntInset::clone() const
+auto_ptr<InsetBase> MathExIntInset::doClone() const
 {
        return auto_ptr<InsetBase>(new MathExIntInset(*this));
 }
@@ -51,13 +64,13 @@ void MathExIntInset::normalize(NormalStream & os) const
 
 void MathExIntInset::metrics(MetricsInfo &, Dimension &) const
 {
-       lyxerr << "should not happen\n";
+       lyxerr << "should not happen" << endl;
 }
 
 
 void MathExIntInset::draw(PainterInfo &, int, int) const
 {
-       lyxerr << "should not happen\n";
+       lyxerr << "should not happen" << endl;
 }
 
 
@@ -127,5 +140,5 @@ void MathExIntInset::mathmlize(MathMLStream & os) const
 
 void MathExIntInset::write(WriteStream &) const
 {
-       lyxerr << "should not happen\n";
+       lyxerr << "should not happen" << endl;
 }