]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathScript.cpp
Fix regression of 18779013 for \smash
[lyx.git] / src / mathed / InsetMathScript.cpp
index b361e5d0c2faaf3326c32e5303a6dadc54d756bb..7e501bc5a75884e9e984010276774b8d8b3d989f 100644 (file)
@@ -90,7 +90,7 @@ MathData const & InsetMathScript::down() const
 {
        if (nargs() == 3)
                return cell(2);
-       LBUFERR(nargs() > 1, _("Invalid number of math cells."));
+       LBUFERR(nargs() > 1);
        return cell(1);
 }
 
@@ -99,21 +99,21 @@ MathData & InsetMathScript::down()
 {
        if (nargs() == 3)
                return cell(2);
-       LBUFERR(nargs() > 1, _("Invalid number of math cells."));
+       LBUFERR(nargs() > 1);
        return cell(1);
 }
 
 
 MathData const & InsetMathScript::up() const
 {
-       LBUFERR(nargs() > 1, _("Invalid number of math cells."));
+       LBUFERR(nargs() > 1);
        return cell(1);
 }
 
 
 MathData & InsetMathScript::up()
 {
-       LBUFERR(nargs() > 1, _("Invalid number of math cells."));
+       LBUFERR(nargs() > 1);
        return cell(1);
 }