]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathCases.cpp
Another warning.
[lyx.git] / src / mathed / InsetMathCases.cpp
index 8d56df5369c680c2d0475d381b69f9917aeba955..7903bee0917ee982253a8a65fbf6c84d74afcbbb 100644 (file)
@@ -70,7 +70,7 @@ void InsetMathCases::draw(PainterInfo & pi, int x, int y) const
 void InsetMathCases::doDispatch(Cursor & cur, FuncRequest & cmd)
 {
        //lyxerr << "*** InsetMathCases: request: " << cmd << endl;
-       switch (cmd.action) {
+       switch (cmd.action()) {
        case LFUN_INSET_MODIFY: {
                istringstream is(to_utf8(cmd.argument()));
                string s;
@@ -96,7 +96,7 @@ void InsetMathCases::doDispatch(Cursor & cur, FuncRequest & cmd)
 bool InsetMathCases::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;
@@ -167,7 +167,7 @@ void InsetMathCases::mathmlize(MathStream & ms) const
 // We need a brace here, somehow.
 void InsetMathCases::htmlize(HtmlStream & ms) const
 {
-       InsetMathGrid::htmlize(ms, "cases");
+       InsetMathGrid::htmlize(ms, "class='cases'");
 }
 
 
@@ -181,7 +181,7 @@ void InsetMathCases::validate(LaTeXFeatures & features) const
 {
        features.require("amsmath");
        InsetMathGrid::validate(features);
-       if (features.runparams().flavor == OutputParams::HTML)
+       if (features.runparams().math_flavor == OutputParams::MathAsHTML)
                // CSS based on eLyXer's
                features.addPreambleSnippet("<style type=\"text/css\">\n"
                        "table.cases{display: inline-block; text-align: center;"