X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMath.cpp;h=89f1f2053834df13559f42f6b25d98889af1afb9;hb=2640b2122838b7025b8494fb378b8927fca75831;hp=64db5a21809d540012d0a50e35633ff91efc6ae5;hpb=f497296c30e6da2f97b16da8ad1c9e96feffb16b;p=lyx.git diff --git a/src/mathed/InsetMath.cpp b/src/mathed/InsetMath.cpp index 64db5a2180..89f1f20538 100644 --- a/src/mathed/InsetMath.cpp +++ b/src/mathed/InsetMath.cpp @@ -28,17 +28,17 @@ namespace lyx { -MathArray & InsetMath::cell(idx_type) +MathData & InsetMath::cell(idx_type) { - static MathArray dummyCell; + static MathData dummyCell; lyxerr << BOOST_CURRENT_FUNCTION << ": I don't have any cell" << endl; return dummyCell; } -MathArray const & InsetMath::cell(idx_type) const +MathData const & InsetMath::cell(idx_type) const { - static MathArray dummyCell; + static MathData dummyCell; lyxerr << BOOST_CURRENT_FUNCTION << ": I don't have any cell" << endl; return dummyCell; } @@ -139,12 +139,6 @@ HullType InsetMath::getType() const } -docstring InsetMath::name() const -{ - return from_ascii("unknown"); -} - - std::ostream & operator<<(std::ostream & os, MathAtom const & at) { odocstringstream oss;