Port deprecated methods

wilder-5.22
Laurent Montel 5 years ago
parent 13a20ff7ae
commit f93d2b55cf
  1. 16
      libkworkspace/kdisplaymanager.cpp
  2. 4
      libtaskmanager/launchertasksmodel_p.h

@ -591,7 +591,11 @@ KDisplayManager::bootOptions(QStringList &opts, int &defopt, int &current)
if (!exec("listbootoptions\n", re))
return false;
#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
opts = QString::fromLocal8Bit(re.data()).split('\t', QString::SkipEmptyParts);
#else
opts = QString::fromLocal8Bit(re.data()).split('\t', Qt::SkipEmptyParts);
#endif
if (opts.size() < 4)
return false;
@ -603,7 +607,11 @@ KDisplayManager::bootOptions(QStringList &opts, int &defopt, int &current)
if (!ok)
return false;
#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
opts = opts[1].split(' ', QString::SkipEmptyParts);
#else
opts = opts[1].split(' ', Qt::SkipEmptyParts);
#endif
for (QStringList::Iterator it = opts.begin(); it != opts.end(); ++it)
(*it).replace(QLatin1String("\\s"), QLatin1String(" "));
@ -747,7 +755,11 @@ KDisplayManager::localSessions(SessList &list)
if (DMType == OldGDM) {
if (!exec("CONSOLE_SERVERS\n", re))
return false;
#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
const QStringList sess = QString(re.data() +3).split(QChar(';'), QString::SkipEmptyParts);
#else
const QStringList sess = QString(re.data() +3).split(QChar(';'), Qt::SkipEmptyParts);
#endif
for (QStringList::ConstIterator it = sess.constBegin(); it != sess.constEnd(); ++it) {
QStringList ts = (*it).split(QChar(','));
SessEnt se;
@ -762,7 +774,11 @@ KDisplayManager::localSessions(SessList &list)
} else {
if (!exec("list\talllocal\n", re))
return false;
#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
const QStringList sess = QString(re.data() + 3).split(QChar('\t'), QString::SkipEmptyParts);
#else
const QStringList sess = QString(re.data() + 3).split(QChar('\t'), Qt::SkipEmptyParts);
#endif
for (QStringList::ConstIterator it = sess.constBegin(); it != sess.constEnd(); ++it) {
QStringList ts = (*it).split(QChar(','));
SessEnt se;

@ -59,7 +59,11 @@ inline static std::pair<QUrl, QStringList> deserializeLauncher(const QString &se
const auto activitiesBlockEnd = serializedLauncher.indexOf("]\n");
if (activitiesBlockEnd != -1) {
#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
activities = serializedLauncher.mid(1, activitiesBlockEnd - 1).split(",", QString::SkipEmptyParts);
#else
activities = serializedLauncher.mid(1, activitiesBlockEnd - 1).split(",", Qt::SkipEmptyParts);
#endif
if (!activities.isEmpty()) {
url = QUrl(serializedLauncher.mid(activitiesBlockEnd + 2));

Loading…
Cancel
Save