diff --git a/src/insets/ChangeLog b/src/insets/ChangeLog index 5578249532..65286e6f27 100644 --- a/src/insets/ChangeLog +++ b/src/insets/ChangeLog @@ -1,3 +1,7 @@ +2005-04-18 Martin Vermeer + + * insetcharstyle.C (validate): allow nested charstyle insets + 2005-04-15 Georg Baum * insettabular.C (getStatus): handle LFUN_INSET_MODIFY diff --git a/src/insets/insetcharstyle.C b/src/insets/insetcharstyle.C index f904390fe1..37ae14562e 100644 --- a/src/insets/insetcharstyle.C +++ b/src/insets/insetcharstyle.C @@ -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); }