]> git.lyx.org Git - features.git/commitdiff
Make sure to call the parent's validate method.
authorRichard Heck <rgheck@comcast.net>
Wed, 31 Mar 2010 21:24:16 +0000 (21:24 +0000)
committerRichard Heck <rgheck@comcast.net>
Wed, 31 Mar 2010 21:24:16 +0000 (21:24 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33992 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/InsetMathRoot.cpp
src/mathed/InsetMathScript.cpp
src/mathed/InsetMathSize.cpp
src/mathed/InsetMathSqrt.cpp

index 722e16792e4c7fe1cd4fc950b414df1b6be52489..050787cca891d696fe7dde721aab2b75dc403396 100644 (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
index cd0defa5d1aa7d08a75094ef06299755477f9de2..37a6857552da4adc9674dd035e168dfac944044a 100644 (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
index fa0bc45604b3d26b26935f97e599617d6a86accf..0403ffbc3f1ba5b953ce17a2758ffd82ccb429b1 100644 (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
index e27475ed1484a0575e088870abf02e864deda0d5..feb2358041f5a536875b87feaf59e0b35a5ada75 100644 (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