]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathCases.cpp
Remove some header leftovers based on Scott's script hints.
[lyx.git] / src / mathed / InsetMathCases.cpp
index 26ab7b2d96c55739cf582c3aee18c1d5cd5c6ab2..d6f7133e2a1c33cbb0bda78ebd55ac1ddb36125c 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;
@@ -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("<style type=\"text/css\">\n"
+               features.addCSSSnippet(
                        "table.cases{display: inline-block; text-align: center;"
                        "border-left: thin solid black; vertical-align: middle; padding-left: 0.5ex;}\n"
-                       "table.cases td {text-align: left;}\n"
-                       "</style>");
+                       "table.cases td {text-align: left;}");
 }