X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathCases.cpp;h=d6f7133e2a1c33cbb0bda78ebd55ac1ddb36125c;hb=154319d0635da7da3523519e28702e4a0ff85bba;hp=c188a57ef9faada76762fb1f12ceacfe2eaee388;hpb=a0043da05f5d32653917d8c551ee50138e639b00;p=lyx.git diff --git a/src/mathed/InsetMathCases.cpp b/src/mathed/InsetMathCases.cpp index c188a57ef9..d6f7133e2a 100644 --- a/src/mathed/InsetMathCases.cpp +++ b/src/mathed/InsetMathCases.cpp @@ -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'"); } @@ -183,11 +183,10 @@ void InsetMathCases::validate(LaTeXFeatures & features) const InsetMathGrid::validate(features); if (features.runparams().math_flavor == OutputParams::MathAsHTML) // CSS based on eLyXer's - features.addPreambleSnippet(""); + "table.cases td {text-align: left;}"); }