diff --git a/mkspecs/features/config.pri b/mkspecs/features/config.pri index 4849a88b3..14e022ee3 100644 --- a/mkspecs/features/config.pri +++ b/mkspecs/features/config.pri @@ -24,7 +24,7 @@ BLACK_CONFIG *= Doxygen #BLACK_CONFIG *= SwiftStableBranch BLACK_CONFIG *= FSUIPC -isEmpty(BLACK_EOL): BLACK_EOL = "20180101" +isEmpty(BLACK_EOL): BLACK_EOL = "20180901" ## Private Area ## diff --git a/src/blackconfig/buildconfig_gen.cpp.in b/src/blackconfig/buildconfig_gen.cpp.in index f14721a38..726c26f3e 100644 --- a/src/blackconfig/buildconfig_gen.cpp.in +++ b/src/blackconfig/buildconfig_gen.cpp.in @@ -137,7 +137,7 @@ bool BlackConfig::CBuildConfig::isVatsimVersion() const QDateTime &BlackConfig::CBuildConfig::getEol() { - static const QString eol(\"$$BLACK_EOL\"); + static const QString eol(\"$$BLACK_EOL\"); // config.pri static const QDateTime dt(eol.isEmpty() ? QDateTime() : QDateTime::fromString(eol, \"yyyyMMdd\")); return dt; }