]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_splitinset.C
Fix math cursor positioning bug
[lyx.git] / src / mathed / math_splitinset.C
index 34e36889478483ec5a0e0744fcb98e07caf1afe2..e903a04b8482ad0d9e9f5aa4fb47a45d2c84612b 100644 (file)
@@ -1,9 +1,25 @@
+/**
+ * \file math_splitinset.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_splitinset.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
 
 
+using std::string;
+using std::auto_ptr;
+
+
 MathSplitInset::MathSplitInset(string const & name)
        : MathGridInset(1, 1), name_(name)
 {
@@ -11,9 +27,9 @@ MathSplitInset::MathSplitInset(string const & name)
 }
 
 
-InsetBase * MathSplitInset::clone() const
+auto_ptr<InsetBase> MathSplitInset::doClone() const
 {
-       return new MathSplitInset(*this);
+       return auto_ptr<InsetBase>(new MathSplitInset(*this));
 }
 
 
@@ -25,6 +41,8 @@ char MathSplitInset::defaultColAlign(col_type col)
                return 'c';
        if (name_ == "aligned")
                return (col & 1) ? 'l' : 'r';
+       if (name_ == "alignedat")
+               return (col & 1) ? 'l' : 'r';
        return 'l';
 }