From: Martin Vermeer Date: Mon, 18 Apr 2005 11:22:02 +0000 (+0000) Subject: Allow nested charstyle insets (Preamble handling) X-Git-Tag: 1.6.10~14391 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=2ee3d19f8f83b0b768fd41747efca3fe67ca43ff;p=features.git Allow nested charstyle insets (Preamble handling) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9823 a592a061-630c-0410-9148-cb99ea01b6c8 --- 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); }