FileInProjectFinder: Fix gcc warning

Change-Id: If58d9e84b34fbc2cbe755fb0d1492e305d4eadd1
Reviewed-by: Christiaan Janssen <christiaan.janssen@nokia.com>
This commit is contained in:
Kai Koehne
2011-10-12 13:49:26 +02:00
parent d3a9e76c7e
commit 55ebeddb1c

View File

@@ -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();