From 55ebeddb1cee95a5cc569280ef3af3a022e42fd6 Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Wed, 12 Oct 2011 13:49:26 +0200 Subject: [PATCH] FileInProjectFinder: Fix gcc warning Change-Id: If58d9e84b34fbc2cbe755fb0d1492e305d4eadd1 Reviewed-by: Christiaan Janssen --- src/libs/utils/fileinprojectfinder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/utils/fileinprojectfinder.cpp b/src/libs/utils/fileinprojectfinder.cpp index 45c42245d4f..dd2893bb21b 100644 --- a/src/libs/utils/fileinprojectfinder.cpp +++ b/src/libs/utils/fileinprojectfinder.cpp @@ -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();