X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_fontoldinset.C;h=e339c27ac3a2c668cb0441cfd3447eb3abc82809;hb=701b99ecd70ac472aa53c8b2317af44def4f9670;hp=1bb2165116fee39ec98edf08ec91fd903222985a;hpb=1f9e9cf5173fa1fbafdff5f21080e5194b05818b;p=lyx.git diff --git a/src/mathed/math_fontoldinset.C b/src/mathed/math_fontoldinset.C index 1bb2165116..e339c27ac3 100644 --- a/src/mathed/math_fontoldinset.C +++ b/src/mathed/math_fontoldinset.C @@ -11,13 +11,11 @@ #include #include "math_fontoldinset.h" +#include "math_data.h" #include "math_mathmlstream.h" -#include "math_streamstr.h" -#include "math_support.h" #include "math_parser.h" -#include "textpainter.h" -#include "support/LOstream.h" -#include "frontends/Painter.h" +#include "math_streamstr.h" +#include "support/std_ostream.h" using std::auto_ptr; @@ -29,7 +27,7 @@ MathFontOldInset::MathFontOldInset(latexkeys const * key) } -auto_ptr MathFontOldInset::clone() const +auto_ptr MathFontOldInset::doClone() const { return auto_ptr(new MathFontOldInset(*this)); } @@ -38,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; }