]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathStackrel.cpp
Revert "Fix #10863 compiler warnings."
[lyx.git] / src / mathed / InsetMathStackrel.cpp
index e34448a419af53eb831076f7d4af090363687c11..dc01ffca90c20c6afa2fbffbe62a567f3cec6e37 100644 (file)
@@ -61,6 +61,7 @@ MathClass InsetMathStackrel::mathClass() const
 
 void InsetMathStackrel::metrics(MetricsInfo & mi, Dimension & dim) const
 {
+       Changer dummy2 = mi.base.changeEnsureMath();
        Dimension dim1;
        cell(1).metrics(mi, dim1);
        Changer dummy = mi.base.changeFrac();
@@ -77,12 +78,12 @@ void InsetMathStackrel::metrics(MetricsInfo & mi, Dimension & dim) const
                dim.asc = dim1.ascent() + dim0.height() + 4;
                dim.des = dim1.descent();
        }
-       metricsMarkers(mi, dim);
 }
 
 
 void InsetMathStackrel::draw(PainterInfo & pi, int x, int y) const
 {
+       Changer dummy2 = pi.base.changeEnsureMath();
        Dimension const dim = dimension(*pi.base.bv);
        Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
        Dimension const & dim1 = cell(1).dimension(*pi.base.bv);
@@ -96,7 +97,6 @@ void InsetMathStackrel::draw(PainterInfo & pi, int x, int y) const
                int y2 = y + dim1.descent() + dim2.ascent() + 1;
                cell(2).draw(pi, m - dim2.width() / 2, y2);
        }
-       drawMarkers(pi, x, y);
 }