]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMath.cpp
installer: further preparation
[lyx.git] / src / mathed / InsetMath.cpp
index 943ca902635bad29b77f9e5d6d04dd6c97a643c6..738f6342c358a3801fb44a4858517a810a2d2082 100644 (file)
@@ -27,6 +27,12 @@ using namespace std;
 
 namespace lyx {
 
+docstring InsetMath::name() const
+{
+       return from_utf8("Unknown");
+}
+
+
 MathData & InsetMath::cell(idx_type)
 {
        static MathData dummyCell(&buffer());
@@ -78,10 +84,11 @@ void InsetMath::write(WriteStream & os) const
 }
 
 
-int InsetMath::plaintext(odocstream &, OutputParams const &) const
+int InsetMath::plaintext(odocstringstream &, 
+        OutputParams const &, size_t) const
 {
        // all math plain text output shall take place in InsetMathHull
-       LASSERT(false, /**/);
+       LATTEST(false);
        return 0;
 }