X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_xarrowinset.C;h=e95b47745f1ae61158c111091e3681ef21ffb56a;hb=d359dd8fca52c4f0100f7cf4bf636113c5c4e49f;hp=217d95a2f71324c3dbecc80c8e3894e99204c1a2;hpb=ef77daf1bc5a204bca21819ec96d34e44cdb1c68;p=lyx.git diff --git a/src/mathed/math_xarrowinset.C b/src/mathed/math_xarrowinset.C index 217d95a2f7..e95b47745f 100644 --- a/src/mathed/math_xarrowinset.C +++ b/src/mathed/math_xarrowinset.C @@ -17,15 +17,15 @@ MathXArrowInset::MathXArrowInset(string const & name) MathInset * MathXArrowInset::clone() const -{ +{ return new MathXArrowInset(*this); } -void MathXArrowInset::metrics(MathMetricsInfo const & st) const +void MathXArrowInset::metrics(MathMetricsInfo & mi) const { - MathMetricsInfo mi = st; - smallerStyleScript(mi); + //MathMetricsInfo mi = st; + //smallerStyleScript(mi); xcell(0).metrics(mi); width_ = xcell(0).width() + 10; ascent_ = xcell(0).height() + 10; @@ -33,8 +33,8 @@ void MathXArrowInset::metrics(MathMetricsInfo const & st) const } -void MathXArrowInset::draw(Painter & pain, int x, int y) const -{ +void MathXArrowInset::draw(MathPainterInfo & pain, int x, int y) const +{ xcell(0).draw(pain, x + 5, y - 10); mathed_draw_deco(pain, x + 1, y - 7, width_ - 2, 5, name_); }