X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_sizeinset.C;h=b6e3a8176914f88ee7310b0d6946ce333129d477;hb=07cc9f67534474b167ca1ea727bda643fdd8d197;hp=9e9eee1af67fbf08b09d3bc84842c23804150b00;hpb=0705dae8a3a2bcdd6be55eb468547c1389e84d2c;p=lyx.git diff --git a/src/mathed/math_sizeinset.C b/src/mathed/math_sizeinset.C index 9e9eee1af6..b6e3a81769 100644 --- a/src/mathed/math_sizeinset.C +++ b/src/mathed/math_sizeinset.C @@ -17,7 +17,10 @@ #include "math_streamstr.h" #include "support/std_ostream.h" +#ifndef CXX_GLOBAL_CSTD using std::atoi; +#endif + using std::auto_ptr; @@ -35,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; }