]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_tabularinset.C
Fix math cursor positioning bug
[lyx.git] / src / mathed / math_tabularinset.C
index e3170770d4d734cad22d333a7f8346f47704c75c..78712160eb708282cecf92fdebf53262d5491551 100644 (file)
@@ -1,19 +1,24 @@
-#include <config.h>
+/**
+ * \file math_tabularinset.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_tabularinset.h"
-#include "math_parser.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
-#include "metricsinfo.h"
 #include "math_streamstr.h"
-#include "Lsstream.h"
 
 #include <iterator>
 
-using std::vector;
-using std::istringstream;
-using std::getline;
-using std::istream_iterator;
+
+using std::string;
 using std::auto_ptr;
 
 
@@ -34,7 +39,7 @@ MathTabularInset::MathTabularInset(string const & name, char valign,
 {}
 
 
-auto_ptr<InsetBase> MathTabularInset::clone() const
+auto_ptr<InsetBase> MathTabularInset::doClone() const
 {
        return auto_ptr<InsetBase>(new MathTabularInset(*this));
 }