Skip to content
Snippets Groups Projects
Commit 7e492011 authored by dt's avatar dt
Browse files

Check the Debugging helper modification date corrrectly for outdated.

parent a49395a0
No related branches found
No related tags found
No related merge requests found
......@@ -106,7 +106,7 @@ QString DebuggingHelperLibrary::debuggingHelperLibraryByInstallData(const QStrin
foreach(const QString &directory, debuggingHelperLibraryDirectories(qtInstallData)) {
const QFileInfo fi(helperFilePath(directory));
if (fi.exists() && fi.lastModified() > lastModified)
if (fi.exists() && fi.lastModified() >= lastModified)
return fi.filePath();
}
return QString();
......
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