]> git.lyx.org Git - lyx.git/blobdiff - src/coordcache.C
cleanup after svn hang-up, #undef CursorShape. Should be compilable ganin now.
[lyx.git] / src / coordcache.C
index ce0194890502ce6946fef8839bc3a379397bdf73..ecfffec949cf21786e822a93233dac51bb823dc7 100644 (file)
@@ -1,17 +1,26 @@
+/* \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"
 
 #include "lyxtext.h"
 
-#include "mathed/math_data.h"
 #include "insets/insetbase.h"
 
 #include <boost/assert.hpp>
 
 
 CoordCache theCoords;
+
 // just a helper to be able to set a breakpoint
 void lyxbreaker(void const * data, const char * hint, int size)
 {
@@ -21,22 +30,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());