Fix validation of insets inside a float

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2140 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Dekel Tsur 2001-06-22 10:55:15 +00:00
parent e4b8f03af5
commit c789eecdba
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-06-22 Dekel Tsur <dekelts@tau.ac.il>
* insetfloat.C (Validate): Add a call to InsetCollapsable::Validate
2001-06-14 Juergen Vigna <jug@sad.it>
* insettext.C (draw): removed warinings.

View File

@ -166,6 +166,7 @@ void InsetFloat::Read(Buffer const * buf, LyXLex & lex)
void InsetFloat::Validate(LaTeXFeatures & features) const
{
features.usedFloats.insert(floatType_);
InsetCollapsable::Validate(features);
}