Skip to content
Snippets Groups Projects
Commit 5b28b539 authored by Roberto Raggi's avatar Roberto Raggi
Browse files

--debug

parent 81c454a5
No related branches found
No related tags found
No related merge requests found
...@@ -71,10 +71,7 @@ void FileWatcher::slotFileChanged(const QString &file) ...@@ -71,10 +71,7 @@ void FileWatcher::slotFileChanged(const QString &file)
QDateTime lastModified = QFileInfo(file).lastModified(); QDateTime lastModified = QFileInfo(file).lastModified();
if (lastModified != m_files.value(file)) { if (lastModified != m_files.value(file)) {
m_files[file] = lastModified; m_files[file] = lastModified;
qDebug() << "slotFileChanged" << file << lastModified;
emit fileChanged(file); emit fileChanged(file);
} else {
qDebug() << "WTF:" << file<<lastModified.toString()<<lastModified.toTime_t();
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment