Raise minimum Qt version to 5.14

This commit is contained in:
Vladimir Golovnev (Glassez) 2021-05-25 19:58:43 +03:00
parent 0c71756009
commit 97c7f3bc67
No known key found for this signature in database
GPG key ID: 52A2C7DEE2DFA6F7
35 changed files with 80 additions and 145 deletions

View file

@ -63,7 +63,7 @@ namespace
// Software 'Anaconda' installs its own python interpreter
// and `python --version` returns a string like this:
// "Python 3.4.3 :: Anaconda 2.3.0 (64-bit)"
const QVector<QByteArray> outputSplit = Utils::ByteArray::splitToViews(procOutput, " ", QString::SkipEmptyParts);
const QVector<QByteArray> outputSplit = Utils::ByteArray::splitToViews(procOutput, " ", Qt::SkipEmptyParts);
if (outputSplit.size() <= 1)
return false;