]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_binominset.C
Jean-Marc's fix for wrong descent
[lyx.git] / src / mathed / math_binominset.C
index d2633501ba5e8b9ea3fe33057799c7d4cff11679..84a875ec8d13f597ee5eb84c027d1dcb04785213 100644 (file)
@@ -1,8 +1,5 @@
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "math_binominset.h"
 #include "math_support.h"
@@ -37,21 +34,21 @@ int MathBinomInset::dw() const
 
 void MathBinomInset::metrics(MathMetricsInfo & mi) const
 {
-       MathScriptChanger(mi.base);
-       xcell(0).metrics(mi);
-       xcell(1).metrics(mi);
-       dim_.a = xcell(0).height() + 4 + 5;
-       dim_.d = xcell(1).height() + 4 - 5;
-       dim_.w = max(xcell(0).width(), xcell(1).width()) + 2 * dw() + 4;
+       MathScriptChanger dummy(mi.base);
+       cell(0).metrics(mi);
+       cell(1).metrics(mi);
+       dim_.a = cell(0).height() + 4 + 5;
+       dim_.d = cell(1).height() + 4 - 5;
+       dim_.w = max(cell(0).width(), cell(1).width()) + 2 * dw() + 4;
 }
 
 
 void MathBinomInset::draw(MathPainterInfo & pi, int x, int y) const
 {
        int m = x + width() / 2;
-       MathScriptChanger(pi.base);
-       xcell(0).draw(pi, m - xcell(0).width() / 2, y - xcell(0).descent() - 3 - 5);
-       xcell(1).draw(pi, m - xcell(1).width() / 2, y + xcell(1).ascent()  + 3 - 5);
+       MathScriptChanger dummy(pi.base);
+       cell(0).draw(pi, m - cell(0).width() / 2, y - cell(0).descent() - 3 - 5);
+       cell(1).draw(pi, m - cell(1).width() / 2, y + cell(1).ascent()  + 3 - 5);
        mathed_draw_deco(pi, x, y - ascent(), dw(), height(), "(");
        mathed_draw_deco(pi, x + width() - dw(), y - ascent(),  dw(), height(), ")");
 }