]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_xymatrixinset.C
fix #1073
[lyx.git] / src / mathed / math_xymatrixinset.C
index f0b988b6e8d90e7dab09c616bb26b69f8d4fa6c3..46da10ee9675f42a62855086fb21a6e121b5acc0 100644 (file)
@@ -29,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);
@@ -54,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 << ')';
 }