]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_deliminset.C
fix #1073
[lyx.git] / src / mathed / math_deliminset.C
index 9cb757079870e11317c2ec6009fc214e5f3ec491..ea73243b1fd96389f9d0ed00ceca4c4135819aa1 100644 (file)
@@ -84,7 +84,7 @@ int MathDelimInset::dw() const
 }
 
 
-void MathDelimInset::metrics(MathMetricsInfo & mi) const
+void MathDelimInset::metrics(MetricsInfo & mi) const
 {
        cell(0).metrics(mi);
        Dimension t;
@@ -98,7 +98,7 @@ void MathDelimInset::metrics(MathMetricsInfo & mi) const
 }
 
 
-void MathDelimInset::draw(MathPainterInfo & pi, int x, int y) const
+void MathDelimInset::draw(PainterInfo & pi, int x, int y) const
 {
        int const w = dw();
        int const b = y - ascent();
@@ -126,7 +126,7 @@ bool MathDelimInset::isAbs() const
 }
 
 
-void MathDelimInset::maplize(MapleStream & os) const
+void MathDelimInset::maple(MapleStream & os) const
 {
        if (isAbs()) {
                if (cell(0).size() == 1 && cell(0).front()->asMatrixInset())
@@ -138,7 +138,7 @@ void MathDelimInset::maplize(MapleStream & os) const
                os << left_ << cell(0) << right_;
 }
 
-void MathDelimInset::maximize(MaximaStream & os) const
+void MathDelimInset::maxima(MaximaStream & os) const
 {
        if (isAbs()) {
                if (cell(0).size() == 1 && cell(0).front()->asMatrixInset())
@@ -151,7 +151,7 @@ void MathDelimInset::maximize(MaximaStream & os) const
 }
 
 
-void MathDelimInset::mathematicize(MathematicaStream & os) const
+void MathDelimInset::mathematica(MathematicaStream & os) const
 {
        if (isAbs()) {
                if (cell(0).size() == 1 && cell(0).front()->asMatrixInset())
@@ -171,7 +171,7 @@ void MathDelimInset::mathmlize(MathMLStream & os) const
 }
 
 
-void MathDelimInset::octavize(OctaveStream & os) const
+void MathDelimInset::octave(OctaveStream & os) const
 {
        if (isAbs())
                os << "det(" << cell(0) << ')';