]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_substackinset.C
Jean-Marc's fix for wrong descent
[lyx.git] / src / mathed / math_substackinset.C
index 89635f8b3eefa0692bc4b62bb177e084eba7a76c..801a45f62df864a6ad4785f9cf8d64894a69d6e1 100644 (file)
@@ -1,8 +1,5 @@
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "math_substackinset.h"
 #include "math_mathmlstream.h"
@@ -43,13 +40,13 @@ void MathSubstackInset::normalize(NormalStream & os) const
 {
        os << "[substack ";
        MathGridInset::normalize(os);
-       os << "]";
+       os << ']';
 }
 
 
-void MathSubstackInset::maplize(MapleStream & os) const
+void MathSubstackInset::maple(MapleStream & os) const
 {
        os << "substack(";
-       MathGridInset::maplize(os);
-       os << ")";
+       MathGridInset::maple(os);
+       os << ')';
 }