]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_unknowninset.C
Fix.
[lyx.git] / src / mathed / math_unknowninset.C
index aadee3e4eec607291d63ddbec2dd57f9a618a678..b562092460f27afb9c8c826862e0bf522a7dc34b 100644 (file)
@@ -1,8 +1,5 @@
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "math_unknowninset.h"
 #include "math_support.h"
@@ -11,7 +8,7 @@
 
 
 MathUnknownInset::MathUnknownInset(string const & nm, bool final, bool black)
-       : MathNestInset(1), name_(nm), final_(final), black_(black)
+       : name_(nm), final_(final), black_(black)
 {}
 
 
@@ -73,12 +70,12 @@ bool MathUnknownInset::final() const
 }
 
 
-void MathUnknownInset::maplize(MapleStream & os) const
+void MathUnknownInset::maple(MapleStream & os) const
 {
        os << name_;
 }
 
-void MathUnknownInset::mathematicize(MathematicaStream & os) const
+void MathUnknownInset::mathematica(MathematicaStream & os) const
 {
        os << name_;
 }
@@ -90,7 +87,7 @@ void MathUnknownInset::mathmlize(MathMLStream & os) const
 }
 
 
-void MathUnknownInset::octavize(OctaveStream & os) const
+void MathUnknownInset::octave(OctaveStream & os) const
 {
        os << name_;
 }