]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_splitinset.C
get rid of broken_header.h and some unneeded tests
[lyx.git] / src / mathed / math_splitinset.C
index 9d4e0058aaa2a03b0272f394db06f6a720200351..e903a04b8482ad0d9e9f5aa4fb47a45d2c84612b 100644 (file)
@@ -15,6 +15,8 @@
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
 
+
+using std::string;
 using std::auto_ptr;
 
 
@@ -25,7 +27,7 @@ MathSplitInset::MathSplitInset(string const & name)
 }
 
 
-auto_ptr<InsetBase> MathSplitInset::clone() const
+auto_ptr<InsetBase> MathSplitInset::doClone() const
 {
        return auto_ptr<InsetBase>(new MathSplitInset(*this));
 }
@@ -39,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';
 }