mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
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
This commit is contained in:
parent
49ddf294a6
commit
09b189e74c
@ -142,20 +142,20 @@ docstring complexLabel(Buffer const & buffer,
|
||||
static CachedMap cached_keys;
|
||||
|
||||
// and cache the timestamp of the bibliography files.
|
||||
static map<FileName, time_t> bibfileStatus;
|
||||
static map<EmbeddedFile, time_t> 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user