We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a33ce7 commit 31f6c70Copy full SHA for 31f6c70
generator/main.cpp
@@ -100,8 +100,8 @@ namespace
100
QString qtdir = getenv("QTDIR");
101
if (qtdir.isEmpty() || !QDir(qtdir).exists(qtdir))
102
{
103
- QString reason = "The QTDIR environment variable " + qtdir.isEmpty() ?
104
- "is not set. " : "points to a non-existing directory. ";
+ QString reason = "The QTDIR environment variable " +
+ (qtdir.isEmpty() ? "is not set. " : "points to a non-existing directory. ");
105
#if defined(Q_OS_MAC)
106
qWarning() << reason << "Assuming standard binary install using frameworks.";
107
QString frameworkDir = "/Library/Frameworks";
0 commit comments