]> 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 ec26689a5fe1cc06f638db1053996dc7440bf6b2..c99ca2bf24d844f49c289d0f9736ef63f9b02c61 100644 (file)
@@ -26,16 +26,16 @@ void MathXArrowInset::metrics(MathMetricsInfo & mi) const
 {
        //MathMetricsInfo mi = st;
        //smallerStyleScript(mi);
-       xcell(0).metrics(mi);
-       dim_.w = xcell(0).width() + 10;
-       dim_.a = xcell(0).height() + 10;
+       cell(0).metrics(mi);
+       dim_.w = cell(0).width() + 10;
+       dim_.a = cell(0).height() + 10;
        dim_.d = 0;
 }
 
 
 void MathXArrowInset::draw(MathPainterInfo & pain, int x, int y) const
 {
-       xcell(0).draw(pain, x + 5, y - 10);
+       cell(0).draw(pain, x + 5, y - 10);
        mathed_draw_deco(pain, x + 1, y - 7, width() - 2, 5, name_);
 }