From f86c9b65726e879652561e6db04e6688bc48f48c Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Mon, 18 Apr 2011 14:13:18 +0200 Subject: QmlDump: Ensure that qmldump is found in QtSDK We ship a precompiled qmldump in the Qt SDK because the Qt versions don't have private headers. However, the logic in buildablehelperlibrary by default rejects any build that is older than the latest changes to the qmldump source code files; allow Qt Creator to pick up the (maybe outdated) qmldump nevertheless if no private headers are installed. Reviewed-by: ckamm Task-number: QTCREATORBUG-4578 --- src/plugins/qt4projectmanager/qmlobservertool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/qt4projectmanager/qmlobservertool.cpp') diff --git a/src/plugins/qt4projectmanager/qmlobservertool.cpp b/src/plugins/qt4projectmanager/qmlobservertool.cpp index d9db94f41a..42295a4a55 100644 --- a/src/plugins/qt4projectmanager/qmlobservertool.cpp +++ b/src/plugins/qt4projectmanager/qmlobservertool.cpp @@ -86,7 +86,7 @@ QString QmlObserverTool::toolByInstallData(const QString &qtInstallData) const QStringList directories = installDirectories(qtInstallData); const QStringList binFilenames = validBinaryFilenames(); - return byInstallDataHelper(sourcePath(), sourceFileNames(), directories, binFilenames); + return byInstallDataHelper(sourcePath(), sourceFileNames(), directories, binFilenames, false); } QStringList QmlObserverTool::locationsByInstallData(const QString &qtInstallData) -- cgit v1.2.1