Make sure to call the parent's validate method.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33992 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-03-31 21:24:16 +00:00
parent 6a702a2f99
commit c7cfcf9e2f
4 changed files with 4 additions and 0 deletions

View File

@ -137,6 +137,7 @@ void InsetMathRoot::validate(LaTeXFeatures & features) const
"span.rootof{border-top: thin solid black;}\n"
"span.root sup{font-size: 75%;}\n"
"</style>");
InsetMathNest::validate(features);
}
} // namespace lyx

View File

@ -782,6 +782,7 @@ void InsetMathScript::validate(LaTeXFeatures & features) const
"sub.math{font-size: 75%;}\n"
"sup.math{font-size: 75%;}\n"
"</style>");
InsetMathNest::validate(features);
}
} // namespace lyx

View File

@ -113,6 +113,7 @@ void InsetMathSize::validate(LaTeXFeatures & features) const
"span.scriptstyle {font-size: small;}\n"
"span.scriptscriptstyle {font-size: x-small;}\n"
"</style>");
InsetMathNest::validate(features);
}
} // namespace lyx

View File

@ -130,6 +130,7 @@ void InsetMathSqrt::validate(LaTeXFeatures & features) const
features.addPreambleSnippet("<style type=\"text/css\">\n"
"span.sqrtof{border-top: thin solid black;}\n"
"</style>");
InsetMathNest::validate(features);
}
} // namespace lyx