]> git.lyx.org Git - lyx.git/blobdiff - src/support/FileName.cpp
Revert unintentional commits.
[lyx.git] / src / support / FileName.cpp
index 5e0caafb6fa47bfb47fb5efbdbff11f0c711da4a..a2140525893eb149614042e4101eaafe83a797a8 100644 (file)
@@ -415,6 +415,10 @@ FileName FileName::getcwd()
 
 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.
+       d->fi.refresh();
        return d->fi.lastModified().toTime_t();
 }