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
This commit is contained in:
André Pönitz 2002-10-24 12:17:58 +00:00
parent e1edfbe8a0
commit 5bef65162c
3 changed files with 3 additions and 9 deletions

View File

@ -1,10 +1,4 @@
2002-10-24 André Pönitz <poenitz@gmx.net>
* 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 <dekelts@tau.ac.il> 2002-10-21 Dekel Tsur <dekelts@tau.ac.il>
* math_factory.C (initSymbols): Support "else" token. * math_factory.C (initSymbols): Support "else" token.

View File

@ -11,7 +11,7 @@
MathUnknownInset::MathUnknownInset(string const & nm, bool final, bool black) MathUnknownInset::MathUnknownInset(string const & nm, bool final, bool black)
: MathNestInset(1), name_(nm), final_(final), black_(black) : name_(nm), final_(final), black_(black)
{} {}

View File

@ -2,7 +2,7 @@
#ifndef MATH_UNKNOWNINSET_H #ifndef MATH_UNKNOWNINSET_H
#define MATH_UNKNOWNINSET_H #define MATH_UNKNOWNINSET_H
#include "math_nestinset.h" #include "math_diminset.h"
#ifdef __GNUG__ #ifdef __GNUG__
#pragma interface #pragma interface
@ -11,7 +11,7 @@
/** /**
Unknowntions or LaTeX names for objects that we really don't know Unknowntions or LaTeX names for objects that we really don't know
*/ */
class MathUnknownInset : public MathNestInset { class MathUnknownInset : public MathDimInset {
public: public:
/// ///
explicit MathUnknownInset(string const & name, explicit MathUnknownInset(string const & name,