Revert unintentional commits.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25717 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2008-07-19 17:29:30 +00:00
parent 83f0903b4a
commit 6e688952c0
2 changed files with 0 additions and 3 deletions

View File

@ -1394,7 +1394,6 @@ BiblioInfo const & Buffer::localBibInfo() const
support::FileNameList::const_iterator en = bibfilesCache.end();
for (; ei != en; ++ ei) {
time_t lastw = ei->lastModified();
LYXERR0(*ei << ", " << lastw << ", " << d->bibfileStatus_[*ei]);
if (lastw != d->bibfileStatus_[*ei]) {
d->bibinfoCacheValid_ = false;
d->bibfileStatus_[*ei] = lastw;

View File

@ -418,9 +418,7 @@ time_t FileName::lastModified() const
// QFileInfo caches information about the file. So, in case this file has
// been touched between the object creation and now, we refresh the file
// information.
LYXERR0("File: " << *this << ", " << fromqstr(d->fi.lastModified().toString("dd.MM.yyyy hh:MM")));
d->fi.refresh();
LYXERR0(fromqstr(d->fi.lastModified().toString("dd.MM.yyyy hh:MM")));
return d->fi.lastModified().toTime_t();
}