X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathMBox.h;h=47fd08f982f8326360f3eb140183b40be2de8527;hb=a746aa52146257c0e7a2d60123f63dccad5b2751;hp=2a077517962b852b213f4af13ee1730b296e02c9;hpb=00e305c9d9bd8b0ff54b6c58adb6192d5934ed60;p=lyx.git diff --git a/src/mathed/InsetMathMBox.h b/src/mathed/InsetMathMBox.h index 2a07751796..47fd08f982 100644 --- a/src/mathed/InsetMathMBox.h +++ b/src/mathed/InsetMathMBox.h @@ -16,8 +16,8 @@ #ifndef MATH_MBOXINSET_H #define MATH_MBOXINSET_H -#include "InsetMathDim.h" -#include "LyXText.h" +#include "InsetMath.h" +#include "Text.h" namespace lyx { @@ -27,11 +27,11 @@ class BufferView; // almost a substitute for the real text inset... -class InsetMathMBox : public InsetMathDim { +class InsetMathMBox : public InsetMath { public: /// explicit InsetMathMBox(); - explicit InsetMathMBox(LyXLayout_ptr const & layout); + explicit InsetMathMBox(Layout_ptr const & layout); /// this stores metrics information in cache_ bool metrics(MetricsInfo & mi, Dimension & dim) const; @@ -50,18 +50,18 @@ public: int latex(Buffer const &, odocstream & os, OutputParams const & runparams) const; /// - LyXText * getText(int) const; + Text * getText(int) const; /// void cursorPos(BufferView const & bv, CursorSlice const & sl, bool boundary, int & x, int & y) const; protected: - virtual void doDispatch(LCursor & cur, FuncRequest & cmd); + virtual void doDispatch(Cursor & cur, FuncRequest & cmd); /// - mutable LyXText text_; + mutable Text text_; private: - virtual std::auto_ptr doClone() const; + virtual std::auto_ptr doClone() const; };