From: Richard Heck Date: Sat, 19 Jul 2008 17:29:30 +0000 (+0000) Subject: Revert unintentional commits. X-Git-Tag: 1.6.10~4020 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=6e688952c016730984c258982d143728da1894cd;p=features.git Revert unintentional commits. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25717 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/Buffer.cpp b/src/Buffer.cpp index 9b39c2979e..63f578f03b 100644 --- a/src/Buffer.cpp +++ b/src/Buffer.cpp @@ -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; diff --git a/src/support/FileName.cpp b/src/support/FileName.cpp index 179184f745..a214052589 100644 --- a/src/support/FileName.cpp +++ b/src/support/FileName.cpp @@ -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(); }