]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_xarrowinset.C
Fix reading of math macros
[lyx.git] / src / mathed / math_xarrowinset.C
index 217d95a2f71324c3dbecc80c8e3894e99204c1a2..c99ca2bf24d844f49c289d0f9736ef63f9b02c61 100644 (file)
@@ -17,26 +17,26 @@ 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);
-       xcell(0).metrics(mi);
-       width_   = xcell(0).width() + 10;
-       ascent_  = xcell(0).height() + 10;
-       descent_ = 0;
+       //MathMetricsInfo mi = st;
+       //smallerStyleScript(mi);
+       cell(0).metrics(mi);
+       dim_.w = cell(0).width() + 10;
+       dim_.a = cell(0).height() + 10;
+       dim_.d = 0;
 }
 
 
-void MathXArrowInset::draw(Painter & 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_);
+void MathXArrowInset::draw(MathPainterInfo & pain, int x, int y) const
+{
+       cell(0).draw(pain, x + 5, y - 10);
+       mathed_draw_deco(pain, x + 1, y - 7, width() - 2, 5, name_);
 }