From 11e35ce7afe28139a923114c5cae8db54713c659 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Fri, 9 Jun 2017 09:34:55 +0200 Subject: [PATCH] Fix Qt version detection, qtDetected must not be a bool --- shared/shared.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/shared.cpp b/shared/shared.cpp index 4415e03..be56d3a 100644 --- a/shared/shared.cpp +++ b/shared/shared.cpp @@ -54,7 +54,7 @@ bool alwaysOwerwriteEnabled = false; QStringList librarySearchPath; bool appstoreCompliant = false; int logLevel = 1; -bool qtDetected = 0; +int qtDetected = 0; bool qtDetectionComplete = 0; // As long as Qt is not detected yet, ldd may encounter "not found" messages, continue anyway bool deployLibrary = false;