]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_exintinset.C
Jean-Marc's fix for wrong descent
[lyx.git] / src / mathed / math_exintinset.C
index 7175cba3e3551f0b2ae610c966550d019a1f2607..4cdf247e419da196c23029ce777075e574dfa9c9 100644 (file)
@@ -1,9 +1,4 @@
 
-
-#ifdef __GNUG__
-#pragma implementation 
-#endif
-
 #include <config.h>
 
 #include "math_exintinset.h"
@@ -65,7 +60,7 @@ void MathExIntInset::draw(MathPainterInfo &, int, int) const
 }
 
 
-void MathExIntInset::maplize(MapleStream & os) const
+void MathExIntInset::maple(MapleStream & os) const
 {
        os << symbol_ << '(';
        if (cell(0).size())
@@ -79,39 +74,39 @@ void MathExIntInset::maplize(MapleStream & os) const
 }
 
 
-void MathExIntInset::maximize(MaximaStream & os) const
+void MathExIntInset::maxima(MaximaStream & os) const
 {
-       if ( symbol_ == "int" ) 
+       if ( symbol_ == "int" )
                os << "integrate(";
-       else 
+       else
                os << symbol_ << '(';
-       
+
        if (cell(0).size())
                os << cell(0) << ',';
        else
                os << '1' << ',';
        if (hasScripts())
                os << cell(1) << ',' << cell(2) << ',' << cell(3) << ')';
-       else 
+       else
                os << cell(1) << ')';
 }
 
-void MathExIntInset::mathematicize(MathematicaStream & os) const
+void MathExIntInset::mathematica(MathematicaStream & os) const
 {
-       if ( symbol_ == "int" ) 
+       if ( symbol_ == "int" )
                os << "Integrate[";
-       else if (symbol_ == "sum") 
+       else if (symbol_ == "sum")
                os << "Sum[";
-       else 
+       else
                os << symbol_ << '[';
-       
+
        if (cell(0).size())
                os << cell(0) << ',';
        else
                os << '1' << ',';
        if (hasScripts())
                os << '{' << cell(1) << ',' << cell(2) << ',' << cell(3) << "}]";
-       else 
+       else
                os << cell(1) << ']';
 }