X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_parinset.C;h=28e2209f1f12d3bbf6ad02577ead2fa64389e924;hb=3e93baac3cd18e27db3eb2a1fcaf90b25e0918a6;hp=03bb1d6c32f763515922a6f2186fdfb1cfc1f14b;hpb=1829cdef6a34ec623c25ec8967dc048e8f19eee9;p=lyx.git diff --git a/src/mathed/math_parinset.C b/src/mathed/math_parinset.C index 03bb1d6c32..28e2209f1f 100644 --- a/src/mathed/math_parinset.C +++ b/src/mathed/math_parinset.C @@ -1,9 +1,19 @@ +/** + * \file math_parinset.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_parinset.h" +#include "math_data.h" #include "math_mathmlstream.h" -#include "support/LOstream.h" +#include "support/std_ostream.h" MathParInset::MathParInset(MathArray const & ar) @@ -12,10 +22,11 @@ MathParInset::MathParInset(MathArray const & ar) } -void MathParInset::metrics(MetricsInfo & mi) const +void MathParInset::metrics(MetricsInfo & mi, Dimension & dim) const { FontSetChanger dummy1(mi.base, "textnormal"); MathGridInset::metrics(mi); + dim = dim_; }