remove qt4 check, not needed

This commit is contained in:
Zach H 2016-05-07 21:51:37 -04:00
parent d46cdd8044
commit 449982553a

View file

@ -43,22 +43,12 @@ bool UpdateChecker::downloadMatchesCurrentOS(QVariant build)
.contains("osx"); .contains("osx");
} }
#elif defined(Q_OS_WIN) #elif defined(Q_OS_WIN)
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
bool UpdateChecker::downloadMatchesCurrentOS(QVariant build) bool UpdateChecker::downloadMatchesCurrentOS(QVariant build)
{ {
return build return build
.toMap()["name"] .toMap()["name"]
.toString() .toString()
.contains("qt5")
.contains("exe");
}
#else
bool UpdateChecker::downloadMatchesCurrentOS(QVariant build)
{
return build
.toMap()["name"]
.toString()
.contains("qt4")
.contains("exe"); .contains("exe");
} }
#endif #endif