Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
7e492011
Commit
7e492011
authored
Sep 21, 2009
by
dt
Browse files
Check the Debugging helper modification date corrrectly for outdated.
parent
a49395a0
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/debugginghelper.cpp
View file @
7e492011
...
...
@@ -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
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment