X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_sizeinset.C;h=b6e3a8176914f88ee7310b0d6946ce333129d477;hb=07cc9f67534474b167ca1ea727bda643fdd8d197;hp=b7cf00fe9f970ddfb0f8649d945856b15ccf413b;hpb=4c6e0fe4226ce3b55d13726977f1e579f17c2ad1;p=lyx.git diff --git a/src/mathed/math_sizeinset.C b/src/mathed/math_sizeinset.C index b7cf00fe9f..b6e3a81769 100644 --- a/src/mathed/math_sizeinset.C +++ b/src/mathed/math_sizeinset.C @@ -17,7 +17,9 @@ #include "math_streamstr.h" #include "support/std_ostream.h" +#ifndef CXX_GLOBAL_CSTD using std::atoi; +#endif using std::auto_ptr; @@ -36,9 +38,9 @@ auto_ptr MathSizeInset::clone() const void MathSizeInset::metrics(MetricsInfo & mi, Dimension & dim) const { StyleChanger dummy(mi.base, style_); - cell(0).metrics(mi, dim_); - metricsMarkers(); - dim = dim_; + cell(0).metrics(mi, dim); + metricsMarkers(dim); + dim_ = dim; }