]> git.lyx.org Git - lyx.git/blobdiff - src/coordcache.C
Two fixes involving RtL text drawing
[lyx.git] / src / coordcache.C
index b574b271c35b46ad87ce43b6f6da8813dd05b82d..956ed41a9a98a11e21b90c1a3f33b88cf6b39a27 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"
@@ -27,19 +37,25 @@ void CoordCache::clear()
        arrays_.clear();
        insets_.clear();
        pars_.clear();
+       slices0_.clear();
+       slices1_.clear();
 }
 
-void CoordCache::startUpdating() {
+
+void CoordCache::startUpdating()
+{
        BOOST_ASSERT(!updating);
        updating = true;
 }
 
 
-void CoordCache::doneUpdating() {
+void CoordCache::doneUpdating()
+{
        BOOST_ASSERT(updating);
        updating = false;
 }
 
+
 Point CoordCache::get(LyXText const * text, lyx::pit_type pit)
 {
        ParPosCache::iterator const it = pars_.find(text);