]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathSize.cpp
Fix bug #8782.
[lyx.git] / src / mathed / InsetMathSize.cpp
index dc79652fad105a311e99eafcfa531baaee9253ff..31cdb6a9e8099931f130f8da6a91141769df8c14 100644 (file)
@@ -43,7 +43,7 @@ Inset * InsetMathSize::clone() const
 
 void InsetMathSize::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       StyleChanger dummy(mi.base, style_);
+       Changer dummy = mi.base.changeStyle(style_);
        cell(0).metrics(mi, dim);
        metricsMarkers(dim);
 }
@@ -51,7 +51,7 @@ void InsetMathSize::metrics(MetricsInfo & mi, Dimension & dim) const
 
 void InsetMathSize::draw(PainterInfo & pi, int x, int y) const
 {
-       StyleChanger dummy(pi.base, style_);
+       Changer dummy = pi.base.changeStyle(style_);
        cell(0).draw(pi, x + 1, y);
        drawMarkers(pi, x, y);
 }
@@ -83,8 +83,7 @@ void InsetMathSize::mathmlize(MathStream & ms) const
        stringstream attrs;
        attrs << "displaystyle='" << (dispstyle ? "true" : "false")
                << "' scriptlevel='" << scriptlevel << "'";
-       ms << MTag("mstyle", attrs.str()) << ">"
-          << cell(0) << ETag("mstyle");
+       ms << MTag("mstyle", attrs.str()) << cell(0) << ETag("mstyle");
 }