]> git.lyx.org Git - lyx.git/blobdiff - src/coordcache.C
minimal effort implementation of:
[lyx.git] / src / coordcache.C
index ce0194890502ce6946fef8839bc3a379397bdf73..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"
@@ -11,7 +21,7 @@
 
 
 CoordCache theCoords;
+
 // just a helper to be able to set a breakpoint
 void lyxbreaker(void const * data, const char * hint, int size)
 {
@@ -21,22 +31,17 @@ void lyxbreaker(void const * data, const char * hint, int size)
 }
 
 
-void lyxaborter(int x, int y)
-{
-       lyxerr << "abort on x: " << x << " y: " << y << std::endl; 
-       BOOST_ASSERT(false);
-}
-
-
 void CoordCache::clear()
 {
        arrays_.clear();
        insets_.clear();
        pars_.clear();
+       slices0_.clear();
+       slices1_.clear();
 }
 
 
-Point CoordCache::get(LyXText const * text, lyx::pit_type pit) 
+Point CoordCache::get(LyXText const * text, lyx::pit_type pit)
 {
        ParPosCache::iterator const it = pars_.find(text);
        BOOST_ASSERT(it != pars_.end());