]> git.lyx.org Git - features.git/blobdiff - src/mathed/array.C
prepare re-enabling LaTeX feature validation
[features.git] / src / mathed / array.C
index 4197abf417813238c631902e55af4f5645ad3b33..3a663915d0684910b532239b27415154866966dc 100644 (file)
@@ -339,3 +339,11 @@ void MathArray::WriteNormal(ostream & os) const
        Write(os, true);
 }
 
+
+void MathArray::Validate(LaTeXFeatures & features) const
+{
+       for (int pos = 0; pos < size(); next(pos)) 
+               if (isInset(pos)) 
+                       nextInset(pos)->Validate(features);
+}
+