]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathSplit.cpp
Years forgotten files.
[lyx.git] / src / mathed / InsetMathSplit.cpp
index 7cbd297111704f19019feaf41104816d16a50a51..240126d122e2d774f4531ff340baa1ccd64cc499 100644 (file)
@@ -69,7 +69,7 @@ void InsetMathSplit::draw(PainterInfo & pi, int x, int y) const
 bool InsetMathSplit::getStatus(Cursor & cur, FuncRequest const & cmd,
                FuncStatus & flag) const
 {
-       switch (cmd.action_) {
+       switch (cmd.action()) {
        case LFUN_INSET_MODIFY: {
                istringstream is(to_utf8(cmd.argument()));
                string s;
@@ -147,6 +147,8 @@ void InsetMathSplit::validate(LaTeXFeatures & features) const
        if (name_ == "split" || name_ == "gathered" || name_ == "aligned" ||
            name_ == "alignedat")
                features.require("amsmath");
+       else if (name_ == "lgathered" || name_ == "rgathered")
+               features.require("mathtools");
        InsetMathGrid::validate(features);
 }