]> 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 f430470898f0c456e2ea1229981a237602d22b15..84a875ec8d13f597ee5eb84c027d1dcb04785213 100644 (file)
@@ -1,8 +1,5 @@
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "math_binominset.h"
 #include "math_support.h"
@@ -37,7 +34,7 @@ int MathBinomInset::dw() const
 
 void MathBinomInset::metrics(MathMetricsInfo & mi) const
 {
-       MathScriptChanger(mi.base);
+       MathScriptChanger dummy(mi.base);
        cell(0).metrics(mi);
        cell(1).metrics(mi);
        dim_.a = cell(0).height() + 4 + 5;
@@ -49,7 +46,7 @@ void MathBinomInset::metrics(MathMetricsInfo & mi) const
 void MathBinomInset::draw(MathPainterInfo & pi, int x, int y) const
 {
        int m = x + width() / 2;
-       MathScriptChanger(pi.base);
+       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(), "(");