From 09b189e74c0bcf3bdf0728a1916cbdafc94ccb82 Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Thu, 27 Mar 2008 05:05:21 +0000 Subject: [PATCH] Cosmetics. And avoid conversion of EmbeddedFile to FileName. That seems suspicious. This may change shortly, anyway, though. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23999 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/InsetCitation.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/insets/InsetCitation.cpp b/src/insets/InsetCitation.cpp index 260bd41bf2..e3d0de3f2d 100644 --- a/src/insets/InsetCitation.cpp +++ b/src/insets/InsetCitation.cpp @@ -142,20 +142,20 @@ docstring complexLabel(Buffer const & buffer, static CachedMap cached_keys; // and cache the timestamp of the bibliography files. - static map bibfileStatus; + static map bibfileStatus; BiblioInfo biblist; EmbeddedFileList const & bibfilesCache = buffer.getBibfilesCache(); // compare the cached timestamps with the actual ones. bool changed = false; - for (EmbeddedFileList::const_iterator it = bibfilesCache.begin(); - it != bibfilesCache.end(); ++ it) { - FileName const f = *it; - time_t lastw = f.lastModified(); - if (lastw != bibfileStatus[f]) { + EmbeddedFileList::const_iterator ei = bibfilesCache.begin(); + EmbeddedFileList::const_iterator en = bibfilesCache.end(); + for (; ei != en; ++ ei) { + time_t lastw = ei->lastModified(); + if (lastw != bibfileStatus[*ei]) { changed = true; - bibfileStatus[f] = lastw; + bibfileStatus[*ei] = lastw; } } -- 2.39.2