X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_boxinset.C;h=10e070c8b75dc492f3a13e573db64790695eb6e1;hb=07cc9f67534474b167ca1ea727bda643fdd8d197;hp=28b3da4f45098bbe937b0e0e10e38d2798f48928;hpb=4ba8a4d6f603c01d7ab7dfa937dc6072ef5db1f2;p=lyx.git diff --git a/src/mathed/math_boxinset.C b/src/mathed/math_boxinset.C index 28b3da4f45..10e070c8b7 100644 --- a/src/mathed/math_boxinset.C +++ b/src/mathed/math_boxinset.C @@ -1,11 +1,22 @@ +/** + * \file math_boxinset.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author André Pönitz + * + * Full author contact details are available in file CREDITS. + */ + #include #include "math_boxinset.h" -#include "math_support.h" +#include "math_data.h" #include "math_mathmlstream.h" #include "math_streamstr.h" -#include "support/LOstream.h" +#include "support/std_ostream.h" +using std::string; using std::auto_ptr; @@ -37,9 +48,9 @@ void MathBoxInset::normalize(NormalStream & os) const void MathBoxInset::metrics(MetricsInfo & mi, Dimension & dim) const { FontSetChanger dummy(mi.base, "textnormal"); - cell(0).metrics(mi, dim_); - metricsMarkers(); - dim = dim_; + cell(0).metrics(mi, dim); + metricsMarkers(dim); + dim_ = dim; }