X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_macroarg.h;h=d7d763d878a1e74eb949921b80b8e20c2ed93afc;hb=3e93baac3cd18e27db3eb2a1fcaf90b25e0918a6;hp=0c4e440dd60271dc1c2ecb56e14b803d5515326d;hpb=1f9e9cf5173fa1fbafdff5f21080e5194b05818b;p=lyx.git diff --git a/src/mathed/math_macroarg.h b/src/mathed/math_macroarg.h index 0c4e440dd6..d7d763d878 100644 --- a/src/mathed/math_macroarg.h +++ b/src/mathed/math_macroarg.h @@ -13,24 +13,24 @@ #ifndef MATHMACROARGUMENT_H #define MATHMACROARGUMENT_H -#include "math_nestinset.h" +#include "math_diminset.h" /// A macro argument. -class MathMacroArgument : public MathNestInset { +class MathMacroArgument : public MathDimInset { public: /// - explicit MathMacroArgument(int); + explicit MathMacroArgument(std::size_t); /// - virtual std::auto_ptr clone() const; - /// - bool isActive() const { return false; } + std::auto_ptr clone() const; /// void metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo &, int x, int y) const; /// - void substitute(MathMacro const & macro); + std::size_t number() const { return number_; } + /// + InsetBase::Code lyxCode() const { return MATHMACROARG_CODE; } /// void normalize(NormalStream &) const; @@ -39,11 +39,9 @@ public: private: /// A number between 1 and 9 - int number_; + std::size_t number_; /// char str_[3]; - /// - bool expanded_; }; #endif