]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_xarrowinset.C
remove unneeded member
[lyx.git] / src / mathed / math_xarrowinset.C
index 32959e666e14939fafb62b4499c43e4bd7111e9d..e95b47745f1ae61158c111091e3681ef21ffb56a 100644 (file)
@@ -22,10 +22,10 @@ MathInset * MathXArrowInset::clone() const
 }
 
 
-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,7 +33,7 @@ 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_);