X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_substackinset.C;h=696a9986e9559d52964832ff468127a53d71f6bc;hb=07cc9f67534474b167ca1ea727bda643fdd8d197;hp=47b4c78d4512c809b34147909aeb8f047cc502d1;hpb=3b3c072df03c58f31cabf5f3b89ee8d9d5f264cf;p=lyx.git diff --git a/src/mathed/math_substackinset.C b/src/mathed/math_substackinset.C index 47b4c78d45..696a9986e9 100644 --- a/src/mathed/math_substackinset.C +++ b/src/mathed/math_substackinset.C @@ -11,8 +11,9 @@ #include #include "math_substackinset.h" +#include "math_data.h" #include "math_mathmlstream.h" -#include "support/LOstream.h" +#include "support/std_ostream.h" using std::auto_ptr; @@ -32,19 +33,17 @@ void MathSubstackInset::metrics(MetricsInfo & mi, Dimension & dim) const { if (mi.base.style == LM_ST_DISPLAY) { StyleChanger dummy(mi.base, LM_ST_TEXT); - MathGridInset::metrics(mi); + MathGridInset::metrics(mi, dim); } else { - MathGridInset::metrics(mi); + MathGridInset::metrics(mi, dim); } - metricsMarkers(); - dim = dim_; + dim_ = dim; } void MathSubstackInset::draw(PainterInfo & pi, int x, int y) const { MathGridInset::draw(pi, x + 1, y); - drawMarkers(pi, x, y); }