]> git.lyx.org Git - lyx.git/blobdiff - src/TextCache.C
remerge
[lyx.git] / src / TextCache.C
index f7133d60302feff5171c6861452159353fc453ac..31f97029f08e170bebeb43cca037eeccd2fb2868 100644 (file)
@@ -1,7 +1,7 @@
 /* This file is part of
- * ====================================================== 
- * 
- *           LyX, The Document Processor        
+ * ======================================================
+ *
+ *           LyX, The Document Processor
  *           Copyright 1995 Matthias Ettrich
  *           Copyright 1995-2001 The LyX Team
  *
 #pragma implementation
 #endif
 
-#include <algorithm>
-
 #include "TextCache.h"
 #include "buffer.h"
 #include "bufferlist.h"
+#include "debug.h"
+
+#include <algorithm>
 
 using std::ostream;
 using std::for_each;
@@ -75,7 +76,7 @@ LyXText * TextCache::findFit(Buffer * b, int p)
        Cache::iterator it = find_if(cache.begin(), cache.end(),
                                     text_fits(b, p));
        if (it != cache.end()) {
-               LyXText * tmp = (*it).second.second;
+               LyXText * tmp = it->second.second;
                cache.erase(it);
                return tmp;
        }