]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_xymatrixinset.C
Fix.
[lyx.git] / src / mathed / math_xymatrixinset.C
index d9ae049ca2477d636178b3c34dd9451797df2745..37781b7f8d8f9dcffc9cbc358c5e0ccf7d3f4427 100644 (file)
@@ -1,8 +1,5 @@
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "math_xymatrixinset.h"
 #include "math_mathmlstream.h"
@@ -53,13 +50,13 @@ void MathXYMatrixInset::normalize(NormalStream & os) const
 {
        os << "[xymatrix ";
        MathGridInset::normalize(os);
-       os << "]";
+       os << ']';
 }
 
 
-void MathXYMatrixInset::maplize(MapleStream & os) const
+void MathXYMatrixInset::maple(MapleStream & os) const
 {
        os << "xymatrix(";
-       MathGridInset::maplize(os);
-       os << ")";
+       MathGridInset::maple(os);
+       os << ')';
 }