]> git.lyx.org Git - lyx.git/blobdiff - src/coordcache.C
revert recent change to development/FORMAT (don't change history)
[lyx.git] / src / coordcache.C
index b574b271c35b46ad87ce43b6f6da8813dd05b82d..51920e25c71ad81c4a479c7091851581662aaa46 100644 (file)
@@ -1,3 +1,13 @@
+/* \file coordcache.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
+#include <config.h>
 
 #include "coordcache.h"
 #include "debug.h"
@@ -23,22 +33,13 @@ void lyxbreaker(void const * data, const char * hint, int size)
 
 void CoordCache::clear()
 {
-       BOOST_ASSERT(updating);
        arrays_.clear();
        insets_.clear();
        pars_.clear();
+       slices0_.clear();
+       slices1_.clear();
 }
 
-void CoordCache::startUpdating() {
-       BOOST_ASSERT(!updating);
-       updating = true;
-}
-
-
-void CoordCache::doneUpdating() {
-       BOOST_ASSERT(updating);
-       updating = false;
-}
 
 Point CoordCache::get(LyXText const * text, lyx::pit_type pit)
 {