]> git.lyx.org Git - lyx.git/blobdiff - src/coordcache.C
Two fixes involving RtL text drawing
[lyx.git] / src / coordcache.C
index 69db4d349b01bc7510de027587959bde85be239b..956ed41a9a98a11e21b90c1a3f33b88cf6b39a27 100644 (file)
@@ -37,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);