Fix *bool assignment

Change-Id: I1497515ea3a7fc4d25aaf80fe1a95f5889f740eb
Reviewed-on: http://codereview.qt.nokia.com/2345
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
This commit is contained in:
Tobias Hunger
2011-07-28 13:04:34 +00:00
parent fa49c70091
commit aa3114750f

View File

@@ -104,7 +104,7 @@ QString FileInProjectFinder::findFile(const QUrl &fileUrl, bool *success) const
if (originalPath.isEmpty()) { if (originalPath.isEmpty()) {
if (success) if (success)
success = false; *success = false;
return originalPath; return originalPath;
} }