]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathBoldSymbol.cpp
The previous commit was actually a fix for bug #9158.
[lyx.git] / src / mathed / InsetMathBoldSymbol.cpp
index 465a7bf77a1469fec36aa611689dcb400fbbdfe9..215bd5ff30367739f4cfa9bb5d0635005f685c99 100644 (file)
@@ -49,7 +49,7 @@ docstring InsetMathBoldSymbol::name() const
 
 void InsetMathBoldSymbol::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       //FontSetChanger dummy(mi.base, "mathbf");
+       //Changer dummy = mi.base.changeFontSet("mathbf");
        cell(0).metrics(mi, dim);
        metricsMarkers(dim);
        ++dim.wid;  // for 'double stroke'
@@ -58,7 +58,7 @@ void InsetMathBoldSymbol::metrics(MetricsInfo & mi, Dimension & dim) const
 
 void InsetMathBoldSymbol::draw(PainterInfo & pi, int x, int y) const
 {
-       //FontSetChanger dummy(pi.base, "mathbf");
+       //Changer dummy = pi.base.changeFontSet("mathbf");
        cell(0).draw(pi, x + 1, y);
        cell(0).draw(pi, x + 2, y);
        drawMarkers(pi, x, y);