Allow nested charstyle insets (Preamble handling)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9823 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Martin Vermeer 2005-04-18 11:22:02 +00:00
parent f04d591c96
commit 2ee3d19f8f
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2005-04-18 Martin Vermeer <martin.vermeer@hut.fi>
* insetcharstyle.C (validate): allow nested charstyle insets
2005-04-15 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* insettabular.C (getStatus): handle LFUN_INSET_MODIFY

View File

@ -259,6 +259,7 @@ int InsetCharStyle::plaintext(Buffer const & buf, ostream & os,
void InsetCharStyle::validate(LaTeXFeatures & features) const
{
features.require(params_.type);
InsetText::validate(features);
}