]> git.lyx.org Git - lyx.git/blobdiff - src/FontList.cpp
Introducing Font::validate().
[lyx.git] / src / FontList.cpp
index 5906cb4a3639a1cc0c25c10d39ddb1285f4ff6ed..7ffd6ed036d1a0ced6143b312eb7858ff5d171cd 100644 (file)
@@ -227,4 +227,13 @@ bool FontList::hasChangeInRange(pos_type pos, int len) const
        return true;
 }
 
+
+void FontList::validate(LaTeXFeatures & features) const
+{
+       const_iterator fcit = list_.begin();
+       const_iterator fend = list_.end();
+       for (; fcit != fend; ++fcit)
+               fcit->font().validate(features);
+}
+
 } // namespace lyx