]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_xymatrixinset.C
fix #1073
[lyx.git] / src / mathed / math_xymatrixinset.C
index 550621367d9cca6f98b4e47875220debb6fcb83e..46da10ee9675f42a62855086fb21a6e121b5acc0 100644 (file)
@@ -1,8 +1,5 @@
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "math_xymatrixinset.h"
 #include "math_mathmlstream.h"
@@ -32,9 +29,9 @@ int MathXYMatrixInset::rowsep() const
 }
 
 
-void MathXYMatrixInset::metrics(MathMetricsInfo & st) const
+void MathXYMatrixInset::metrics(MetricsInfo & st) const
 {
-       MathMetricsInfo mi = st;
+       MetricsInfo mi = st;
        if (mi.base.style == LM_ST_DISPLAY)
                mi.base.style = LM_ST_TEXT;
        MathGridInset::metrics(mi);
@@ -57,9 +54,9 @@ void MathXYMatrixInset::normalize(NormalStream & os) const
 }
 
 
-void MathXYMatrixInset::maplize(MapleStream & os) const
+void MathXYMatrixInset::maple(MapleStream & os) const
 {
        os << "xymatrix(";
-       MathGridInset::maplize(os);
+       MathGridInset::maple(os);
        os << ')';
 }