]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_matrixinset.C
split inset -> inset + updatableinset
[lyx.git] / src / mathed / math_matrixinset.C
index 4cfedd59b45f5d462e0aed310ce4c9179cdb58b4..37db699ed6aef57bdc8c23ebd4a8defab5be2f13 100644 (file)
@@ -1,6 +1,3 @@
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "math_matrixinset.h"
 #include "math_parser.h"
@@ -31,7 +28,7 @@ void MathMatrixInset::normalize(NormalStream & os) const
 }
 
 
-void MathMatrixInset::maplize(MapleStream & os) const
+void MathMatrixInset::maple(MapleStream & os) const
 {
        os << "matrix(" << int(nrows()) << ',' << int(ncols()) << ",[";
        for (idx_type idx = 0; idx < nargs(); ++idx) {
@@ -43,7 +40,7 @@ void MathMatrixInset::maplize(MapleStream & os) const
 }
 
 
-void MathMatrixInset::maximize(MaximaStream & os) const
+void MathMatrixInset::maxima(MaximaStream & os) const
 {
        os << "matrix(";
        for (row_type row = 0; row < nrows(); ++row) {
@@ -67,7 +64,7 @@ void MathMatrixInset::mathmlize(MathMLStream & os) const
 }
 
 
-void MathMatrixInset::octavize(OctaveStream & os) const
+void MathMatrixInset::octave(OctaveStream & os) const
 {
        os << '[';
        for (row_type row = 0; row < nrows(); ++row) {