]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_symbolinset.C
Jean-Marc's fix for wrong descent
[lyx.git] / src / mathed / math_symbolinset.C
index c317c89077f8dd2d0e7622fbab770829739344ed..272c38861dd09be9e9e0bddbf1a1e9f6c2dcc78c 100644 (file)
@@ -1,6 +1,3 @@
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include <config.h>
 
@@ -120,7 +117,7 @@ void MathSymbolInset::normalize(NormalStream & os) const
 }
 
 
-void MathSymbolInset::maplize(MapleStream & os) const
+void MathSymbolInset::maple(MapleStream & os) const
 {
        if (name() == "cdot")
                os << '*';
@@ -130,7 +127,7 @@ void MathSymbolInset::maplize(MapleStream & os) const
                os << name();
 }
 
-void MathSymbolInset::maximize(MaximaStream & os) const
+void MathSymbolInset::maxima(MaximaStream & os) const
 {
        if (name() == "cdot")
                os << '*';
@@ -141,7 +138,7 @@ void MathSymbolInset::maximize(MaximaStream & os) const
 }
 
 
-void MathSymbolInset::mathematicize(MathematicaStream & os) const
+void MathSymbolInset::mathematica(MathematicaStream & os) const
 {
        if ( name() == "pi")    { os << "Pi"; return;}
        if ( name() == "infty") { os << "Infinity"; return;}
@@ -176,7 +173,7 @@ void MathSymbolInset::mathmlize(MathMLStream & os) const
 }
 
 
-void MathSymbolInset::octavize(OctaveStream & os) const
+void MathSymbolInset::octave(OctaveStream & os) const
 {
        if (name() == "cdot")
                os << '*';