* src/CoordCache.h: compile fix.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20470 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2007-09-24 17:43:29 +00:00
parent 3f913e10a8
commit 430a18042e

View File

@ -133,7 +133,7 @@ public:
bool covers(T const * thing, int x, int y) const
{
cache_type::const_iterator it = data_.find(thing);
typename cache_type::const_iterator it = data_.find(thing);
return it != data_.end() && it->second.covers(x, y);
}