From: André Pönitz Date: Thu, 24 Oct 2002 12:17:58 +0000 (+0000) Subject: revert this mornings change and postpone it to 1.4. A can of worms... X-Git-Tag: 1.6.10~18101 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=5bef65162cd74082de126ed4ed7be14a83210ec8;p=features.git revert this mornings change and postpone it to 1.4. A can of worms... git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5496 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/ChangeLog b/src/mathed/ChangeLog index 7fa36511a0..8a953d3c3e 100644 --- a/src/mathed/ChangeLog +++ b/src/mathed/ChangeLog @@ -1,10 +1,4 @@ -2002-10-24 André Pönitz - - * math_unknowninset.[Ch] ; - Let UnknownInset inherit from NestInset instead of DimInset to enable - it to store the selection while the macro name is typed. - 2002-10-21 Dekel Tsur * math_factory.C (initSymbols): Support "else" token. diff --git a/src/mathed/math_unknowninset.C b/src/mathed/math_unknowninset.C index aadee3e4ee..c54562514a 100644 --- a/src/mathed/math_unknowninset.C +++ b/src/mathed/math_unknowninset.C @@ -11,7 +11,7 @@ MathUnknownInset::MathUnknownInset(string const & nm, bool final, bool black) - : MathNestInset(1), name_(nm), final_(final), black_(black) + : name_(nm), final_(final), black_(black) {} diff --git a/src/mathed/math_unknowninset.h b/src/mathed/math_unknowninset.h index 31a76d5c40..1e6c2d6822 100644 --- a/src/mathed/math_unknowninset.h +++ b/src/mathed/math_unknowninset.h @@ -2,7 +2,7 @@ #ifndef MATH_UNKNOWNINSET_H #define MATH_UNKNOWNINSET_H -#include "math_nestinset.h" +#include "math_diminset.h" #ifdef __GNUG__ #pragma interface @@ -11,7 +11,7 @@ /** Unknowntions or LaTeX names for objects that we really don't know */ -class MathUnknownInset : public MathNestInset { +class MathUnknownInset : public MathDimInset { public: /// explicit MathUnknownInset(string const & name,