]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_liminset.C
fix #1073
[lyx.git] / src / mathed / math_liminset.C
index 5c1b1d8a4b9d8f83bc2276b21d62792269121734..8608db0edfd8d4bfd5de74321b02375e2e4daf37 100644 (file)
@@ -1,3 +1,4 @@
+
 #include "math_liminset.h"
 #include "math_support.h"
 #include "math_mathmlstream.h"
@@ -27,25 +28,25 @@ void MathLimInset::normalize(NormalStream & os) const
 }
 
 
-void MathLimInset::metrics(MathMetricsInfo &) const
+void MathLimInset::metrics(MetricsInfo &) const
 {
        lyxerr << "should not happen\n";
 }
 
 
-void MathLimInset::draw(MathPainterInfo &, int, int) const
+void MathLimInset::draw(PainterInfo &, int, int) const
 {
        lyxerr << "should not happen\n";
 }
 
 
-void MathLimInset::maplize(MapleStream & os) const
+void MathLimInset::maple(MapleStream & os) const
 {
        os << "limit(" << cell(0) << ',' << cell(1) << '=' << cell(2) << ')';
 }
 
 
-void MathLimInset::mathematicize(MathematicaStream & os) const
+void MathLimInset::mathematica(MathematicaStream & os) const
 {
        os << "Lim[" << cell(0) << ',' << cell(1) << ',' << cell(2) << ']';
 }