X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_sizeinset.C;h=b6e3a8176914f88ee7310b0d6946ce333129d477;hb=07cc9f67534474b167ca1ea727bda643fdd8d197;hp=0e9e4cca067914ea64eb3332eb997154f4fde267;hpb=3b3c072df03c58f31cabf5f3b89ee8d9d5f264cf;p=lyx.git diff --git a/src/mathed/math_sizeinset.C b/src/mathed/math_sizeinset.C index 0e9e4cca06..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/LOstream.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; }