Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
ee0c5d31
Commit
ee0c5d31
authored
Feb 19, 2010
by
Tobias Hunger
Browse files
Do not report qmake pathes if the file is no longer there
* We get a bogus Qt imported otherwise
parent
a22af062
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qtversionmanager.cpp
View file @
ee0c5d31
...
...
@@ -714,7 +714,9 @@ QString QtVersionManager::findQMakeBinaryFromMakefile(const QString &directory)
#ifdef Q_OS_WIN
qmakePath
=
qmakePath
.
toLower
();
#endif
return
qmakePath
;
// Is qmake still installed?
if
(
QFile
::
exists
(
qmakePath
))
return
qmakePath
;
}
}
makefile
.
close
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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