]> git.lyx.org Git - features.git/commitdiff
Revert unintentional commits.
authorRichard Heck <rgheck@comcast.net>
Sat, 19 Jul 2008 17:29:30 +0000 (17:29 +0000)
committerRichard Heck <rgheck@comcast.net>
Sat, 19 Jul 2008 17:29:30 +0000 (17:29 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25717 a592a061-630c-0410-9148-cb99ea01b6c8

src/Buffer.cpp
src/support/FileName.cpp

index 9b39c2979e8aafdcbe1d9ecc5022fcd6bb7d4841..63f578f03b5fdb152b5923ee00a2b0abdc70beff 100644 (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;
index 179184f74507914e3b8a6c3ebfa33d92fd21e17d..a2140525893eb149614042e4101eaafe83a797a8 100644 (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();
 }