]> git.lyx.org Git - features.git/blobdiff - src/mathed/InsetMathCases.cpp
Fix broken Apple speller interface
[features.git] / src / mathed / InsetMathCases.cpp
index 5ddb9d015e50b7f61b008c1585bf1e72f2e1eb3f..082e956f1326912aeccee915942b19c4f4e6b45b 100644 (file)
@@ -32,8 +32,8 @@ using namespace lyx::support;
 namespace lyx {
 
 
-InsetMathCases::InsetMathCases(Buffer * buf, row_type n)
-       : InsetMathGrid(buf, 2, n, 'c', from_ascii("ll"))
+InsetMathCases::InsetMathCases(Buffer * buf, row_type rows)
+       : InsetMathGrid(buf, 2, rows, 'c', from_ascii("ll"))
 {}
 
 
@@ -61,19 +61,15 @@ 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()) {
        case LFUN_TABULAR_FEATURE: {
                string s = cmd.getArg(0);
                // vertical lines and adding/deleting columns is not allowed for \cases
-               // FIXME: "I suspect that the break after cur.undispatched() should be a
-               // return; the recordUndo seems bogus too." (lasgouttes)
                if (s == "append-column" || s == "delete-column"
                    || s == "add-vline-left" || s == "add-vline-right") {
                        cur.undispatched();
-                       break;
+                       return;
                }
-               cur.recordUndo();
        }
        default:
                break;
@@ -91,15 +87,15 @@ bool InsetMathCases::getStatus(Cursor & cur, FuncRequest const & cmd,
                if (s == "add-vline-left" || s == "add-vline-right") {
                        flag.setEnabled(false);
                        flag.message(bformat(
-                               from_utf8(N_("No vertical grid lines in 'cases': feature %1$s")),
-                               from_utf8(s)));
+                               from_utf8(N_("Can't add vertical grid lines in '%1$s'")),
+                               from_utf8("cases")));
                        return true;
                }
                if (s == "append-column" || s == "delete-column") {
                        flag.setEnabled(false);
                        flag.message(bformat(
                                from_utf8(N_("Changing number of columns not allowed in "
-                                            "'cases': feature %1$s")), from_utf8(s)));
+                                            "'%1$s'")), from_utf8("cases")));
                        return true;
                }
                break;
@@ -111,7 +107,7 @@ bool InsetMathCases::getStatus(Cursor & cur, FuncRequest const & cmd,
 }
 
 
-void InsetMathCases::write(WriteStream & os) const
+void InsetMathCases::write(TeXMathStream & os) const
 {
        MathEnsurer ensurer(os);
        if (os.fragile())
@@ -143,7 +139,7 @@ void InsetMathCases::maple(MapleStream & os) const
 }
 
 
-void InsetMathCases::mathmlize(MathStream & ms) const
+void InsetMathCases::mathmlize(MathMLStream & ms) const
 {
        ms << "<" << from_ascii(ms.namespacedTag("mo"))
           << " form='prefix' fence='true' stretchy='true' symmetric='true'>"