]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathHull.cpp
Fix bug #12772
[lyx.git] / src / mathed / InsetMathHull.cpp
index 9c4e6e91fdb76434212d044356298874f4778f46..537d6670c5ffa0d090ffb0b2acfd5c372a001f83 100644 (file)
@@ -2582,7 +2582,7 @@ void InsetMathHull::mathmlize(MathMLStream & ms) const
 void InsetMathHull::mathAsLatex(TeXMathStream & os) const
 {
        MathEnsurer ensurer(os, false);
-       bool havenumbers = haveNumbers();
+       bool const havenumbers = haveNumbers();
        bool const havetable = havenumbers || nrows() > 1 || ncols() > 1;
 
        if (!havetable) {
@@ -2603,7 +2603,7 @@ void InsetMathHull::mathAsLatex(TeXMathStream & os) const
                        docstring const & num = numbers_[row];
                        if (!num.empty())
                                os << '(' << num << ')';
-                 os << "</td>";
+                   os << "</td>";
                }
                os << "</tr>";
        }