X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathUnknown.h;h=d0c8480c783c57645e075dcff67e8df2f5335a8d;hb=1bf7b59d60a30aed7d418cb63e9f12610635f7e6;hp=9d30e1980732fbcde7c6b417993b0ad7e9fa7eb6;hpb=e53e4d06726919c0fbf386bbe8f9d62a640b74d7;p=lyx.git diff --git a/src/mathed/InsetMathUnknown.h b/src/mathed/InsetMathUnknown.h index 9d30e19807..d0c8480c78 100644 --- a/src/mathed/InsetMathUnknown.h +++ b/src/mathed/InsetMathUnknown.h @@ -12,26 +12,27 @@ #ifndef MATH_UNKNOWNINSET_H #define MATH_UNKNOWNINSET_H -#include "InsetMathDim.h" +#include "InsetMath.h" namespace lyx { /// LaTeX names for objects that we really don't know -class InsetMathUnknown : public InsetMathDim { +class InsetMathUnknown : public InsetMath { public: /// explicit InsetMathUnknown(docstring const & name, bool final = true, bool black = false); /// - bool metrics(MetricsInfo & mi, Dimension & dim) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; /// void setName(docstring const & name); /// docstring name() const; + /// identifies UnknownInsets InsetMathUnknown const * asUnknownInset() const { return this; } /// identifies UnknownInsets @@ -52,9 +53,9 @@ public: /// bool final() const; /// - int kerning() const { return kerning_; } + int kerning(BufferView const *) const { return kerning_; } private: - virtual std::auto_ptr doClone() const; + virtual Inset * clone() const; /// docstring name_; /// are we finished creating the name?