Michael Schmitt wrote:
> Just a short question: Why is one class called "InsetOld"? Does it
> mean that it will be removed eventually?

src/mathed/math_inset.h:class MathInset : public InsetBase {
src/insets/inset.h:class InsetOld : public InsetBase {

Yes. The Math insets all derive from MathInset:

src/mathed/math_inset.h:class MathInset : public InsetBase {

and the 'Outside world' insets all derive from InsetOld:

src/insets/inset.h:class InsetOld : public InsetBase {

Inset unification is the process of moving functionality into 
InsetBase from MathInset and InsetOld. Once finished, InsetOld and 
MathInset will propably both disappear.

-- 
Angus

Reply via email to