]> git.lyx.org Git - lyx.git/blobdiff - src/coordcache.C
LFUN_UNICODE_INSERT - unicode-insert
[lyx.git] / src / coordcache.C
index 8f4e717b3ef780ec01b624da1f20290725099fa1..0f7575cc9e1fcb35290bbaf33ef37ee471f888be 100644 (file)
@@ -76,6 +76,13 @@ CoordCache::dump() const {
                        lyxerr << "\" has point " << p.x_ << "," << p.y_ << std::endl;
                }
        }
+
+       lyxerr << "InsetCache contains:" << std::endl;
+       for (CoordCacheBase<InsetBase>::cache_type::const_iterator i = getInsets().getData().begin(); i != getInsets().getData().end(); ++i) {
+               InsetBase const * inset = (*i).first;
+               Point p = (*i).second;
+               lyxerr << "Inset " << inset << "(" << to_utf8(inset->getInsetName()) << ") has point " << p.x_ << "," << p.y_ << std::endl;
+       }
 }
 
 } // namespace lyx