]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathDecoration.cpp
Another warning.
[lyx.git] / src / mathed / InsetMathDecoration.cpp
index 1cb3aebcc197a5528da5ab25cd96d5c5e9c25574..37fae799112bffe82725038f3537b89e85dd4c60 100644 (file)
@@ -105,10 +105,9 @@ InsetMath::mode_type InsetMathDecoration::currentMode() const
 
 void InsetMathDecoration::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       bool const upshape = currentMode() == TEXT_MODE
+       bool really_change_font = currentMode() == TEXT_MODE
                                && isMathFont(from_ascii(mi.base.fontname));
-       ShapeChanger dummy(mi.base.font, upshape ?
-                               UP_SHAPE : mi.base.font.shape());
+       FontSetChanger dummy(mi.base, "textnormal", really_change_font);
 
        cell(0).metrics(mi, dim);
 
@@ -129,10 +128,9 @@ void InsetMathDecoration::metrics(MetricsInfo & mi, Dimension & dim) const
 
 void InsetMathDecoration::draw(PainterInfo & pi, int x, int y) const
 {
-       bool const upshape = currentMode() == TEXT_MODE
+       bool really_change_font = currentMode() == TEXT_MODE
                                && isMathFont(from_ascii(pi.base.fontname));
-       ShapeChanger dummy(pi.base.font, upshape ?
-                               UP_SHAPE : pi.base.font.shape());
+       FontSetChanger dummy(pi.base, "textnormal", really_change_font);
 
        cell(0).draw(pi, x + 1, y);
        Dimension const & dim0 = cell(0).dimension(*pi.base.bv);