forked from qt-creator/qt-creator
FileInProjectFinder: Fix gcc warning
Change-Id: If58d9e84b34fbc2cbe755fb0d1492e305d4eadd1 Reviewed-by: Christiaan Janssen <christiaan.janssen@nokia.com>
This commit is contained in:
@@ -77,7 +77,7 @@ void FileInProjectFinder::setProjectDirectory(const QString &absoluteProjectPath
|
||||
|
||||
const QFileInfo infoPath(newProjectPath);
|
||||
QTC_CHECK(newProjectPath.isEmpty()
|
||||
|| infoPath.exists() && infoPath.isAbsolute());
|
||||
|| (infoPath.exists() && infoPath.isAbsolute()));
|
||||
|
||||
m_projectDir = newProjectPath;
|
||||
m_cache.clear();
|
||||
|
||||
Reference in New Issue
Block a user