X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_fontoldinset.C;h=e339c27ac3a2c668cb0441cfd3447eb3abc82809;hb=701b99ecd70ac472aa53c8b2317af44def4f9670;hp=66b38c73e3a2d46a354eb40a2f1bc3f4adc27eef;hpb=0705dae8a3a2bcdd6be55eb468547c1389e84d2c;p=lyx.git diff --git a/src/mathed/math_fontoldinset.C b/src/mathed/math_fontoldinset.C index 66b38c73e3..e339c27ac3 100644 --- a/src/mathed/math_fontoldinset.C +++ b/src/mathed/math_fontoldinset.C @@ -27,7 +27,7 @@ MathFontOldInset::MathFontOldInset(latexkeys const * key) } -auto_ptr MathFontOldInset::clone() const +auto_ptr MathFontOldInset::doClone() const { return auto_ptr(new MathFontOldInset(*this)); } @@ -36,9 +36,9 @@ auto_ptr MathFontOldInset::clone() const void MathFontOldInset::metrics(MetricsInfo & mi, Dimension & dim) const { FontSetChanger dummy(mi.base, key_->name.c_str()); - cell(0).metrics(mi, dim_); - metricsMarkers(1); - dim = dim_; + cell(0).metrics(mi, dim); + metricsMarkers(dim); + dim_ = dim; }