]> git.lyx.org Git - lyx.git/blobdiff - src/BufferList.cpp
Routines for calculating numerical labels for BibTeX citations.
[lyx.git] / src / BufferList.cpp
index 422457d0bb20d091bb8fb7a58252e53f3f302756..61d62206a3f3e35e740c74f2cf25022e331d2370 100644 (file)
@@ -336,4 +336,17 @@ bool BufferList::releaseChild(Buffer * parent, Buffer * child)
 }
 
 
+void BufferList::changed(bool update_metrics) const
+{
+       BufferStorage::const_iterator it = bstore.begin();
+       BufferStorage::const_iterator end = bstore.end();
+       for (; it != end; ++it)
+               (*it)->changed(update_metrics);
+       it = binternal.begin();
+       end = binternal.end();
+       for (; it != end; ++it)
+               (*it)->changed(update_metrics);
+}
+
+
 } // namespace lyx