X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_sizeinset.C;h=b6e3a8176914f88ee7310b0d6946ce333129d477;hb=07cc9f67534474b167ca1ea727bda643fdd8d197;hp=c965f3e0a979685d6b177ebbd54f98faa8afdd81;hpb=236ea81bc5c0ce7101c9460d1ee97b8f3c9be9df;p=lyx.git diff --git a/src/mathed/math_sizeinset.C b/src/mathed/math_sizeinset.C index c965f3e0a9..b6e3a81769 100644 --- a/src/mathed/math_sizeinset.C +++ b/src/mathed/math_sizeinset.C @@ -11,12 +11,16 @@ #include #include "math_sizeinset.h" -#include "math_parser.h" +#include "math_data.h" #include "math_mathmlstream.h" +#include "math_parser.h" #include "math_streamstr.h" #include "support/std_ostream.h" +#ifndef CXX_GLOBAL_CSTD using std::atoi; +#endif + using std::auto_ptr; @@ -34,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; }