do not forget to propagate validate to contents

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@9497 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2005-01-19 10:05:30 +00:00
parent eb00d0ea59
commit b572a44716
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2005-01-19 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* math_decorationinset.C (validate): do not forget to call
validate on the contents of the inset.
2005-01-03 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* math_decorationinset.C (ams, validate): new methods. Require

View File

@ -116,6 +116,7 @@ void MathDecorationInset::validate(LaTeXFeatures & features) const
{
if (ams())
features.require("amsmath");
MathNestInset::validate(features);
}